mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
.. | ||
index.js | ||
license | ||
package.json | ||
readme.md |
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!