Bones/node_modules/systemjs/test/tests/duplicateDeps/m2.js

14 lines
296 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
System.register([], function(exports_1) {
function f1() { return 1; }
exports_1("f1", f1);
function f2() { return 2; }
exports_1("f2", f2);
function f3() { return 3; }
exports_1("f3", f3);
return {
setters:[],
execute: function() {
}
}
});