mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-14 02:33:09 -07:00
* fix: apply automatic eslint fixes * lint: allow hashbang comment for tiddlywiki.js * lint: first back of manual lint fixes for unused vars * lint: added more fixes for unused vars * lint: missed files * lint: updated eslint config with selected rules from #9669
23 lines
287 B
JavaScript
23 lines
287 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;
|
|
};
|
|
|