TiddlyWiki5/editions/testcommonjs/tiddlers/nested/program.js
Saq Imtiaz 785086e0a5
Fixes ESLint errors (#9668)
* 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
2026-02-20 08:38:42 +00:00

14 lines
228 B
JavaScript

/*\
title: nested/program.js
type: application/javascript
module-type: library
Nested test
\*/
var test = require("test");
test.assert(require("a/b/c/d").foo() == 1, "nested module identifier");
test.print("DONE", "info");