browsernizr
Version:
Modernizr wrapper for use with browserify
27 lines (25 loc) • 694 B
JavaScript
/*!
{
"name": "Template strings",
"property": "templatestrings",
"notes": [{
"name": "MDN Docs",
"href": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#Browser_compatibility"
}]
}
!*/
/* DOC
Template strings are string literals allowing embedded expressions.
*/
var Modernizr = require('./../lib/Modernizr.js');
Modernizr.addTest('templatestrings', function() {
var supports;
try {
// A number of tools, including uglifyjs and require, break on a raw "`", so
// use an eval to get around that.
// eslint-disable-next-line
eval('``');
supports = true;
} catch (e) {}
return !!supports;
});