_.templatefor objects
bower install underscore-tplnpm install underscore-tpl_tpl( subject, values, [settings])
var _tpl = require( 'underscore-tpl' );
var values = {
foo : "foo",
badass : "Jules Winfield",
qux : {
mofo : "mofo"
}
};
var config = {
baz : "<%= qux.mofo %>",
major : {
badass : "<%= badass %>"
},
"<%= foo %>" : "bar"
};
console.log( _tpl( config, values ) );# output
{ baz: 'mofo', major: { badass: 'Jules Winfield' }, foo: 'bar' }_tpl accepts all _.template settings and adds a few more:
ignoreKeys[Boolean]: whentrueobject keys will not be interpolated. (Default:false)mustache|handlebars[Boolean]: whentrueyou can use mustache style tags{{ }}instead of ERB.
These can be set either in the settings parameter of _tpl, e.g.:
var results = _tpl(subject, values, {
ignorekeys: true
});or globally:
_tpl.templateSettings.ignoreKeys = true;Released under MIT license