Skip to content

Instantly share code, notes, and snippets.

@tored
Last active October 11, 2015 19:18
Show Gist options
  • Save tored/3907264 to your computer and use it in GitHub Desktop.
Save tored/3907264 to your computer and use it in GitHub Desktop.
supplant
function supplant(s, o) {
return s.replace(/\{([^{}]*)\}/g,
function (a, b) {
var r = o[b];
return typeof r === 'string' || typeof r === 'number' ? r : a;
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment