forked from daren.hsu/line_push
12 lines
319 B
JavaScript
12 lines
319 B
JavaScript
(function(root, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
define(<%= amd %>, factory);
|
|
} else if (typeof exports === 'object') {
|
|
module.exports = factory(<%= cjs %>);
|
|
} else {
|
|
root.<%= namespace %> = factory(<%= global %>);
|
|
}
|
|
}(this, function(<%= param %>) {
|
|
<%= contents %>
|
|
}));
|