# backtick-template **Repository Path**: mirrors_WebReflection/backtick-template ## Basic Information - **Project Name**: backtick-template - **Description**: ES2015 backticks for ES3+ engines - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Deprecated / Unmaintained Please use [tag-params](https://github.com/WebReflection/tag-params#readme) instead. - - - ### ES2015 backticks for ES3+ engines [![build status](https://secure.travis-ci.org/WebReflection/backtick-template.svg)](http://travis-ci.org/WebReflection/backtick-template) [![Coverage Status](https://coveralls.io/repos/WebReflection/backtick-template/badge.svg?branch=master)](https://coveralls.io/r/WebReflection/backtick-template?branch=master) ```js 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