Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created April 29, 2016 13:18
Show Gist options
  • Save andreasvirkus/ff1f191821654f46a5c9ada7ad033728 to your computer and use it in GitHub Desktop.
Save andreasvirkus/ff1f191821654f46a5c9ada7ad033728 to your computer and use it in GitHub Desktop.
*
* This function does not attempt to implement all of sprintf, just %s,
* which is the only one that I ever use.
*/
function sprintf(text){
var i = 1,
args = arguments;
return text.replace(/%s/g, function(pattern) {
return (i < args.length) ? args[i++] : "";
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment