UNPKG

modules

Version:
15 lines (14 loc) 279 B
define('test/commonjs/method/a', 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; }; });