Tone.js/gulp/fragments/after.frag
2015-06-13 22:31:43 -04:00

12 lines
No EOL
229 B
JavaScript

//UMD
if ( typeof define === "function" && define.amd ) {
define( "Tone", [], function() {
return Tone;
});
} else if (typeof module === "object") {
module.exports = Tone;
} else {
root.Tone = Tone;
}
} (this));