0.2.0 • Published 5 years ago

backtick-template v0.2.0

Weekly downloads
504
License
MIT
Repository
github
Last release
5 years ago

ES2015 backticks for ES3+ engines build status Coverage Status

var template = require('backtick-template');

// just string
const info = 'template';
`some ${info}` === template('some ${info}', {info});

// passing through a transformer
transform `some ${info}` ===
    template(transform, 'some ${info}', {info});

// using it as String method
String.prototype.template = template.asMethod;

`some ${info}` === 'some ${info}'.template({info});

transform `some ${info}` ===
    'some ${info}'.template(transform, {info});

MIT Style License