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
15 lines
227 B
JavaScript
15 lines
227 B
JavaScript
/*\
|
|
title: hasOwnProperty/program.js
|
|
type: application/javascript
|
|
module-type: library
|
|
|
|
OwnProperty test
|
|
|
|
\*/
|
|
|
|
void require("hasOwnProperty");
|
|
void require("toString");
|
|
var test = require("test");
|
|
test.print("DONE", "info");
|
|
|
|
|