mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
16 lines
288 B
JavaScript
16 lines
288 B
JavaScript
define(["require", "exports", "module"], function(require, exports, module) {
|
|
exports.foo = function () {
|
|
return this;
|
|
};
|
|
exports.set = function (x) {
|
|
this.x = x;
|
|
};
|
|
exports.get = function () {
|
|
return this.x;
|
|
};
|
|
exports.getClosed = function () {
|
|
return exports.x;
|
|
};
|
|
|
|
});
|