tra-analysis/website/functions/node_modules/string-format-obj
2019-01-06 13:14:45 -06:00
..
index.js push all website files 2019-01-06 13:14:45 -06:00
license push all website files 2019-01-06 13:14:45 -06:00
package.json push all website files 2019-01-06 13:14:45 -06:00
readme.md push all website files 2019-01-06 13:14:45 -06:00

string-format-obj

Replace tokens from a string with values of an object.

$ npm install --save string-format-obj
var format = require('string-format-obj');

format('{greeting} {thing}!', {
  greeting: 'Hello',
  thing: 'world'
});
// Hello world!

If you want to cache the string

var formatFunc = format('{greeting} {thing}!');

formatFunc({
  greeting: 'Howdy',
  thing: 'doody'
});
// Howdy doody!