UNPKG

530 Btext/x-handlebars-templateView Raw
1{{{pipelineDependencies}}}
2
3(function(factory) {
4 /* jshint undef: true */
5 if (typeof define === "function" && define.amd) {
6 define({{#if amdModuleId}}'{{amdModuleId}}', {{/if}}[
7 {{{amdDependencies}}}
8 ], factory);
9 }
10 else if (typeof module !== "undefined" && module.exports) {
11 module.exports = factory(
12 {{{cjsDependencies}}});
13 }
14 else {
15 factory({{{globalDependencies}}});
16 }
17}(function({{dependencies}}) {
18
19{{{code}}}
20{{#if objectToExport}}
21{{indent}}return {{{objectToExport}}};
22{{/if}}
23}));
\No newline at end of file