TiddlyWiki5/editions/testcommonjs/tiddlers/method/a.js

24 lines
299 B
JavaScript

/*\
title: method/a.js
type: application/javascript
module-type: library
Method test
\*/
exports.foo = function () {
return this;
};
exports.set = function (x) {
this.x = x;
};
exports.get = function () {
return this.x;
};
exports.getClosed = function () {
return exports.x;
};