backtick-template icon indicating copy to clipboard operation
backtick-template copied to clipboard

ES2015 backticks for ES3+ engines

Deprecated / Unmaintained

Please use tag-params instead.


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