npm.io
1.1.1 • Published 8 years ago

string-format-obj

Licence
MIT
Version
1.1.1
Deps
0
Vulns
0
Weekly
0
Stars
2

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!

Keywords