diff options
Diffstat (limited to 'node_modules/locutus/php/strings/printf.js')
-rw-r--r-- | node_modules/locutus/php/strings/printf.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/node_modules/locutus/php/strings/printf.js b/node_modules/locutus/php/strings/printf.js deleted file mode 100644 index 2cc1f95..0000000 --- a/node_modules/locutus/php/strings/printf.js +++ /dev/null @@ -1,17 +0,0 @@ -'use strict'; - -module.exports = function printf() { - // discuss at: http://locutus.io/php/printf/ - // original by: Ash Searle (http://hexmen.com/blog/) - // improved by: Michael White (http://getsprink.com) - // improved by: Brett Zamir (http://brett-zamir.me) - // example 1: printf("%01.2f", 123.1) - // returns 1: 6 - - var sprintf = require('../strings/sprintf'); - var echo = require('../strings/echo'); - var ret = sprintf.apply(this, arguments); - echo(ret); - return ret.length; -}; -//# sourceMappingURL=printf.js.map
\ No newline at end of file |