UNPKG

midi-player-js

Version:

Midi parser & player engine for browser or Node. Works well with single or multitrack MIDI files.

26 lines (25 loc) 661 B
/*! { "name": "Template strings", "property": "templatestrings", "notes": [{ "name": "MDN Reference", "href": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings#Browser_compatibility" }] } !*/ /* DOC Template strings are string literals allowing embedded expressions. */ define(['Modernizr'], function(Modernizr) { 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. eval('``'); supports = true; } catch (e) {} return !!supports; }); });