string-substitute
v1.0.2
Published
String utility which substitutes {n} tokens within the specified string
Downloads
2
Readme
node-string-substitute
Simple string util which substitutes {n} tokens within the specified string
###Usage###
var substitute = require('string-substitute');
var address = substitute('{0}, my name is {1}', 'Hello', 'Bruce Wayne');
console.log(address); //Hello, my name is Bruce Wayne
###Install###
npm install string-substitute
###Test###
mocha test