-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindexUtilsTS.js
27 lines (27 loc) · 1.14 KB
/
indexUtilsTS.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const HTMLCache_1 = require("./utils/html/HTMLCache");
const HTMLParser_1 = require("./utils/html/HTMLParser");
const HTMLDomElement_1 = require("./utils/html/HTMLDomElement");
const RequireSupernameModule = require("./utils/nano/RequireSupername");
const StringLength_1 = require("./utils/nano/StringLength");
const Cookies_1 = require("./utils/web/Cookies");
const HTMLCacheCTOR = HTMLCache_1.HTMLCache;
const HTMLCacheInstance = new HTMLCacheCTOR();
const HTMLParserCTOR = HTMLParser_1.HTMLParser;
const HTMLParserInstance = new HTMLParserCTOR();
const HTMLDomElementCTOR = HTMLDomElement_1.HTMLDomElement;
const HTMLDomElementInstance = new HTMLDomElementCTOR({});
const StringLengthCTOR = StringLength_1.StringLength;
const StringLengthInstance = new StringLengthCTOR("");
const RequireSupernameModuleLoaded = RequireSupernameModule;
const CookiesCTOR = Cookies_1.Cookies;
const CookiesInstance = new CookiesCTOR();
[
HTMLCacheInstance,
HTMLParserInstance,
HTMLDomElementInstance,
StringLengthInstance,
RequireSupernameModuleLoaded,
CookiesInstance,
].forEach((e) => console.log(e));