Skip to content

Instantly share code, notes, and snippets.

@JosePedroDias
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JosePedroDias/e614cbed56f5d0610198 to your computer and use it in GitHub Desktop.
Save JosePedroDias/e614cbed56f5d0610198 to your computer and use it in GitHub Desktop.
expand template
var expandTemplate = function(tplS, modelO) {
for (var k in modelO) {
tplS = tplS.replace( new RegExp('({{'+k+'}})', 'g'), modelO[k] );
}
return tplS;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment