0.2.4 • Published 5 years ago

inset v0.2.4

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

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