string-format-obj

1.1.1 • Public • Published

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!

/string-format-obj/

    Package Sidebar

    Install

    npm i string-format-obj

    Weekly Downloads

    82,799

    Version

    1.1.1

    License

    MIT

    Last publish

    Collaborators

    • stephenplusplus