0.1.0 • Published 8 years ago

@jacobmarshall/interpolate v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

@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 😚