Skip to content

Instantly share code, notes, and snippets.

@rauchg
Created January 13, 2012 18:51
Show Gist options
  • Save rauchg/1608044 to your computer and use it in GitHub Desktop.
Save rauchg/1608044 to your computer and use it in GitHub Desktop.
/**
# 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);
@rauchg
Copy link
Author

rauchg commented Jan 13, 2012

Reminder to add padding support.

@jaredsmith
Copy link

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