Tone.js/grunt/fragments/after.frag
Yotam Mann 666d8f96c1 removed reference to global 'define' with build
gets rid of the problem of having the global ‘define’ left defined in
the window which may have adverse effects on other AMD shim modules.
2014-10-02 18:55:24 -04:00

9 lines
No EOL
175 B
JavaScript

(function(root, undef) {
//leave no trace
//undefine 'define'
if (root.ToneDefinedDefine){
root.define = undef;
root.ToneDefinedDefine = undef;
}
}(this, undefined));