UNPKG

533 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.wrapped}}}
8 ], factory);
9 }
10 else if (typeof module === 'object' && module.exports) {
11 module.exports = factory(
12 {{{cjsDependencies.wrapped}}});
13 }
14 else {
15 factory({{{globalDependencies}}});
16 }
17}(function({{dependencies}}) {
18
19{{{code}}}
20{{#if objectToExport}}
21return {{{objectToExport}}};
22{{/if}}
23}));
\No newline at end of file