Skip to content

Replace in a string all the values provided in an object

License

Notifications You must be signed in to change notification settings

jmjuanes/repstr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Replace in a string all the values provided in an object

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published