mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-29 23:13:36 +00:00
13 lines
205 B
JavaScript
13 lines
205 B
JavaScript
exports.foo = function () {
|
|
return this;
|
|
};
|
|
exports.set = function (x) {
|
|
this.x = x;
|
|
};
|
|
exports.get = function () {
|
|
return this.x;
|
|
};
|
|
exports.getClosed = function () {
|
|
return exports.x;
|
|
};
|