mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-26 08:40:56 -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
16 lines
305 B
JavaScript
16 lines
305 B
JavaScript
/*\
|
|
title: absolute/program.js
|
|
type: application/javascript
|
|
module-type: library
|
|
|
|
Absolute require test
|
|
|
|
\*/
|
|
|
|
|
|
var test = require("test");
|
|
var a = require("./submodule/a");
|
|
var b = require("./b");
|
|
test.assert(a.foo().foo === b.foo, "require works with absolute identifiers");
|
|
test.print("DONE", "info");
|
|
|