mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-31 22:18:44 +00:00
12 lines
No EOL
229 B
JavaScript
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)); |