inset

v0.2.2
A super-simple, ultra-lightweight interpolation module
interpolation interpolate string format formatter

Inset

A super-simple, ultra-lightweight (330B) interpolation module

Usage

const inset = require('inset');

let sentence = inset('Hi, My name is {person.name.first} and I am {person.age}', {
  person: {
    name: {
      first: 'Mike'
    },
    age: 40
  }
});

// Hi, My name is Mike and I am 40'

Developing & Contributing

Using mocha & chaijs for simple unit tests.

NODE_ENV=development npm install

npm test

Metadata

  • ISC
  • Whatever
  • Michael Price
  • released 2/14/2017

Downloads

Maintainers