Files
blockly/package/templates/umd.template
Sam El-Husseini de39d5f2d0 NPM distribution (#2780)
* Add NPM distribution tasks.
2019-08-07 10:35:17 -07:00

14 lines
394 B
Plaintext

/* eslint-disable */
;(function(root, factory) {
if (typeof define === 'function' && define.amd) { // AMD
define(<%= amd %>, factory);
} else if (typeof exports === 'object') { // Node.js
module.exports = factory(<%= cjs %>);
} else { // Browser
root.<%= namespace %> = factory(<%= global %>);
}
}(this, function(<%= param %>) {
<%= contents %>
return <%= exports %>;
}));