@jacobmarshall/interpolate
v0.1.0
Published
A very simple, basic, and dumb string interpolation utility
Downloads
1
Readme
@jacobmarshall/interpolate
A very simple, basic, and dumb string interpolation utility
Installation
$ npm install @jacobmarshall/interpolate
Basic Usage
import interpolate from '@jacobmarshall/interpolate';
console.log(interpolate('Hello {{message}}', {
message: 'World'
}));
// => "Hello World"
API
interpolate (string
string, object|array
data [, object
options]) string
Pretty self explanatory, see example above 😚