es6-template-regex ![NPM version](https://badge.fury.io/js/es6-template-regex.svg)
Regular expression for matching es6 template delimiters in a string.
Install
Install with npm
$ npm i es6-template-regex --save
Usage
The top-level export of this module is a function:
var re = require('es6-template-regex');
function interpolate(str, data) {
return str.replace(re(), function(m, prop) {
return data[prop] || prop;
});
}
var str = 'foo ${bar} baz ${quux}';
var data = {bar: 'AAA', quux: 'BBB'};
interpolate(str, data);
Running tests
Install dev dependencies:
$ npm i -d && npm test
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
Jon Schlinkert
License
Copyright © 2015 Jon Schlinkert
Released under the MIT license.
This file was generated by verb-cli on August 10, 2015.