Skip to content

Instantly share code, notes, and snippets.

@sbstp
Created July 14, 2014 15:16
Show Gist options
  • Save sbstp/86c7733fbc3e3bfea6ef to your computer and use it in GitHub Desktop.
Save sbstp/86c7733fbc3e3bfea6ef to your computer and use it in GitHub Desktop.
function format(text, args) {
return text.replace(/\{([\s\S]+?)\}/g, function(match, index) {
var val = args[index];
if (val == null) {
return match;
}
return val;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment