You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
755 B
24 lines
755 B
(function(root, factory) {
|
|
if(typeof exports === 'object') {
|
|
module.exports = factory({{{cjsDependencies}}});
|
|
}
|
|
else if(typeof define === 'function' && define.amd) {
|
|
define({{#if amdModuleId}}'{{amdModuleId}}', {{/if}}[{{{amdDependencies}}}], factory);
|
|
}
|
|
else {
|
|
{{#if globalAlias}}root['{{{globalAlias}}}'] = {{else}}{{#if objectToExport}}root['{{{objectToExport}}}'] = {{/if}}{{/if}}factory({{{globalDependencies}}});
|
|
}
|
|
}(this, function({{dependencies}}) {
|
|
|
|
{{{code}}}
|
|
|
|
cola.powergraph = powergraph;
|
|
cola.shortestpaths = shortestpaths;
|
|
cola.geom = geom;
|
|
cola.vpsc = vpsc;
|
|
cola.PriorityQueue = PriorityQueue;
|
|
|
|
{{#if objectToExport}}
|
|
{{indent}}return {{{objectToExport}}};
|
|
{{/if}}
|
|
})); |