-
-
Save rauchg/1608044 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
# s.js: minimalistic javascript sprintf(). | |
// standalone | |
s('http://%s:%d', 'localhost', 40) | |
// extend String.prototype | |
s.extend(); | |
'http://%s:%d'.s('localhost', 40); | |
Only supports `%s` and `%d`. Escape `%` as `%%`. | |
**/ | |
(function (g) { | |
function s (str) { | |
var i = 1, args = arguments; | |
return String(str).replace(/%?%(d|s)/g, function (symbol, type) { | |
if ('%' == symbol[1]) return symbol; | |
var arg = args[i++]; | |
return 'd' == type ? Number(arg) : String(arg); | |
}); | |
}; | |
s.extend = function () { | |
String.prototype.s = function () { | |
var arr = [this]; | |
arr.push.apply(arr, arguments) | |
return s.apply(null, arr); | |
} | |
} | |
g.top ? g.s = s : module.exports = s; | |
})(this); |
Can you please let me know what license this code (and I'm assuming, https://npmjs.com/package/s) is licensed under?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reminder to add padding support.