mol_dump_lib 0.0.180 → 0.0.181
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.audit.js +1 -1
- package/node.d.ts +0 -53
- package/node.deps.json +1 -1
- package/node.js +4 -283
- package/node.js.map +1 -1
- package/node.meta.tree +0 -58
- package/node.mjs +4 -283
- package/node.test.js +42 -345
- package/node.test.js.map +1 -1
- package/package.json +2 -10
- package/web.audit.js +1 -1
- package/web.d.ts +0 -12
- package/web.deps.json +1 -1
- package/web.js +0 -106
- package/web.js.map +1 -1
- package/web.meta.tree +0 -58
- package/web.mjs +0 -106
- package/web.test.js +33 -57
- package/web.test.js.map +1 -1
package/node.audit.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
console.info(
|
|
1
|
+
console.info( '%c ▫ $mol_build ▫ Audit passed', 'color:forestgreen; font-weight:bolder' )
|
package/node.d.ts
CHANGED
|
@@ -2073,59 +2073,6 @@ declare namespace $ {
|
|
|
2073
2073
|
}
|
|
2074
2074
|
}
|
|
2075
2075
|
|
|
2076
|
-
declare namespace $ {
|
|
2077
|
-
let $mol_action: typeof $mol_wire_method;
|
|
2078
|
-
}
|
|
2079
|
-
|
|
2080
|
-
declare namespace $ {
|
|
2081
|
-
function $mol_dom_parse(text: string, type?: DOMParserSupportedType): Document;
|
|
2082
|
-
}
|
|
2083
|
-
|
|
2084
|
-
declare namespace $ {
|
|
2085
|
-
class $mol_fetch_response extends $mol_object2 {
|
|
2086
|
-
readonly native: Response;
|
|
2087
|
-
constructor(native: Response);
|
|
2088
|
-
status(): "unknown" | "success" | "inform" | "redirect" | "wrong" | "failed";
|
|
2089
|
-
code(): number;
|
|
2090
|
-
message(): string;
|
|
2091
|
-
headers(): Headers;
|
|
2092
|
-
mime(): string | null;
|
|
2093
|
-
stream(): ReadableStream<Uint8Array> | null;
|
|
2094
|
-
text(): string;
|
|
2095
|
-
json(): unknown;
|
|
2096
|
-
buffer(): ArrayBuffer;
|
|
2097
|
-
xml(): Document;
|
|
2098
|
-
xhtml(): Document;
|
|
2099
|
-
html(): Document;
|
|
2100
|
-
}
|
|
2101
|
-
class $mol_fetch extends $mol_object2 {
|
|
2102
|
-
static request(input: RequestInfo, init?: RequestInit): Promise<Response> & {
|
|
2103
|
-
destructor: () => void;
|
|
2104
|
-
};
|
|
2105
|
-
static response(input: RequestInfo, init?: RequestInit): $mol_fetch_response;
|
|
2106
|
-
static success(input: RequestInfo, init?: RequestInit): $mol_fetch_response;
|
|
2107
|
-
static stream(input: RequestInfo, init?: RequestInit): ReadableStream<Uint8Array> | null;
|
|
2108
|
-
static text(input: RequestInfo, init?: RequestInit): string;
|
|
2109
|
-
static json(input: RequestInfo, init?: RequestInit): unknown;
|
|
2110
|
-
static buffer(input: RequestInfo, init?: RequestInit): ArrayBuffer;
|
|
2111
|
-
static xml(input: RequestInfo, init?: RequestInit): Document;
|
|
2112
|
-
static xhtml(input: RequestInfo, init?: RequestInit): Document;
|
|
2113
|
-
static html(input: RequestInfo, init?: RequestInit): Document;
|
|
2114
|
-
}
|
|
2115
|
-
}
|
|
2116
|
-
|
|
2117
|
-
declare namespace $ {
|
|
2118
|
-
function $mol_huggingface_run(this: $, space: string, method: string | number, ...data: readonly any[]): readonly any[];
|
|
2119
|
-
function $mol_huggingface_rest(space: string, method: string, ...data: readonly any[]): readonly any[];
|
|
2120
|
-
function $mol_huggingface_ws(space: string, fn_index: number, ...data: readonly any[]): Promise<readonly any[]> & {
|
|
2121
|
-
destructor: () => void;
|
|
2122
|
-
};
|
|
2123
|
-
}
|
|
2124
|
-
|
|
2125
|
-
declare namespace $ {
|
|
2126
|
-
function $hyoo_lingua_translate(this: $, lang: string, text: string): string;
|
|
2127
|
-
}
|
|
2128
|
-
|
|
2129
2076
|
declare namespace $ {
|
|
2130
2077
|
interface $mol_locale_dict {
|
|
2131
2078
|
[key: string]: string;
|