mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
11 lines
198 B
JavaScript
11 lines
198 B
JavaScript
System.register("tests/foo.js", [], function($__export) {
|
|
"use strict";
|
|
var __moduleName = "foo";
|
|
return {
|
|
setters: [],
|
|
execute: function() {
|
|
$__export('f', 'f');
|
|
}
|
|
};
|
|
});
|