Tone.js/gulp/fragments/after.frag
2015-11-17 21:26:23 -05:00

12 lines
No EOL
216 B
JavaScript

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