Skip to content

Instantly share code, notes, and snippets.

@konijn
Created February 7, 2014 14:29
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 konijn/8863555 to your computer and use it in GitHub Desktop.
Save konijn/8863555 to your computer and use it in GitHub Desktop.
Tiny Templates
function fillTemplate( s )
{ //Replace ~ with further provided arguments
for( var i = 1, a = s.split('~'), s = '' ; i < arguments.length ; i++ )
s = s + a.shift() + arguments[i];
return s + a.join("");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment