Created
August 7, 2015 18:33
-
-
Save TrySound/a7d5bda99674fa4c0a2d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function template(txt, data) { | |
var key; | |
for(key in data) if(data.hasOwnProperty(key)) { | |
txt = txt.replace(new RegExp('\\{\\{\\s*' + key + '\\s*\\}\\}', 'g'), data[key]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment