Skip to content

Instantly share code, notes, and snippets.

@cannap
Last active February 16, 2018 19:18
Show Gist options
  • Save cannap/afbde359c119dd33cb4c0aa99bb5e824 to your computer and use it in GitHub Desktop.
Save cannap/afbde359c119dd33cb4c0aa99bb5e824 to your computer and use it in GitHub Desktop.
function msg(text) {
if (text != null && arguments.length > 1) {
for (let i = 1; i < arguments.length; i++) {
text = text.replace('{' + (i - 1) + '}', arguments[i])
}
}
return text
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment