Skip to content

Instantly share code, notes, and snippets.

@nielk
Created June 9, 2015 14:57
Show Gist options
  • Select an option

  • Save nielk/798b3dce0c660d74ada4 to your computer and use it in GitHub Desktop.

Select an option

Save nielk/798b3dce0c660d74ada4 to your computer and use it in GitHub Desktop.
tweet sized concat string function
function t(s, d) {
for (var p in d)
s = s.replace(new RegExp('{' + p + '}', 'g'), d[p]);
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment