Compile template with dot notation
npm install pixie-dot> Access template data with dot notation
``sh`
$ npm install --save pixie-dot
Returns compiled template, with support for dot notation in the expressions
- template required: A pixie template objectdata
- : An object/array that you compile with the template
`js
var dot = require('pixie-dot')
var pixie = require('pixie')
var template = pixie('Hello {{input.world}} and {{input.person}}!')
dot(template, {
input: { world: 'Mars', person: 'Jamen' }
})
// => 'Hello Mars and Jamen!'
`
You can also select arrays with numbers:
`js``
var template = pixie('Hello {{inputs.2.world}} and {{world.2.person}}!')
MIT © Sean Wilson