Skip to content

Instantly share code, notes, and snippets.

@lsongdev
Created June 18, 2015 06:58
Show Gist options
  • Select an option

  • Save lsongdev/81cfb09a697cc6627ff9 to your computer and use it in GitHub Desktop.

Select an option

Save lsongdev/81cfb09a697cc6627ff9 to your computer and use it in GitHub Desktop.
var tmpl = function(str, data){
return str.replace(/#{([\s\S]*?)}/g, function(matchs, key){
return data[key.trim()] || '';
});
};
tmpl("My name is #{name} .", { name: 'lsong' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment