wallet-core/test/tests/duplicateDeps/m2.js
Florian Dold 9af485a584 Squashed 'thirdparty/systemjs/' content from commit 5ed69b6
git-subtree-dir: thirdparty/systemjs
git-subtree-split: 5ed69b6344e8fc1cd43bf758350b2236f57e1499
2016-10-10 03:50:11 +02:00

14 lines
309 B
JavaScript

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() {
}
}
});