This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

repstr

1.1.0 • Public • Published

RepStr

npm npm

Replace in a template string all values provided in an object

Installation

Use NPM to install RepStr:

npm install repstr

Usage

//Import dependencies 
var rep_str = require('repstr');
 
//Compile the template string
var str = rep_str('My car is {color}', { color: 'blue'});
 
//Display in console
console.log(str); //-> My car is blue

API

rep_str(str, obj [, prefix][, suffix])

Return a new string. Accepts the following arguments:

  • str: template string.
  • obj: an object with all the keys to be replaced in your template string.
  • prefix (optionally): a string with the prefix of the template variable. Default value is {.
  • suffix (optionally): a string with the suffix of the template variable. Default value is }.

License

Under the MIT LICENSE.

Package Sidebar

Install

npm i repstr

Weekly Downloads

0

Version

1.1.0

License

MIT

Last publish

Collaborators

  • jmjuanes