ddan-js 2.10.6 → 2.10.8
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/bin/ddan-js.browser.js +1 -1
- package/bin/ddan-js.js +1 -1
- package/bin/ddan-js.mjs +1 -1
- package/bin/modules/common/index.d.ts +1 -1
- package/bin/modules/common/match.d.ts +1 -1
- package/bin/modules/html.d.ts +2 -1
- package/bin/tiny/hook.d.ts +1 -1
- package/bin/tiny/mini.d.ts +2 -1
- package/bin/tiny/web.d.ts +2 -1
- package/package.json +3 -3
package/bin/modules/html.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ declare const _default: {
|
|
|
22
22
|
legacyCopy: (text: string) => boolean;
|
|
23
23
|
takeHtmlLinks: (htmlContent: string) => never[];
|
|
24
24
|
takeHtml: (htmlContent: string, regex: RegExp) => string[];
|
|
25
|
-
toBlobUrl: (part: BlobPart, mime
|
|
25
|
+
toBlobUrl: (part: BlobPart, mime?: string) => string;
|
|
26
|
+
workerURL: (fn: Function) => string;
|
|
26
27
|
};
|
|
27
28
|
export default _default;
|
package/bin/tiny/hook.d.ts
CHANGED
|
@@ -182,7 +182,7 @@ declare const dHook: {
|
|
|
182
182
|
fromUint32: (uint32: Uint32Array) => string;
|
|
183
183
|
flatten: <T_7>(data: T_7[], recursive?: boolean, list?: T_7[]) => T_7[];
|
|
184
184
|
shExpMatch: (text: string, pattern: string) => boolean;
|
|
185
|
-
|
|
185
|
+
shExpMatchs: (text: string, pattern: string | string[]) => boolean;
|
|
186
186
|
copy: (source: any, options?: {
|
|
187
187
|
fields?: string[] | undefined;
|
|
188
188
|
camel?: boolean | undefined;
|
package/bin/tiny/mini.d.ts
CHANGED
|
@@ -100,7 +100,8 @@ declare const dMini: {
|
|
|
100
100
|
legacyCopy: (text: string) => boolean;
|
|
101
101
|
takeHtmlLinks: (htmlContent: string) => never[];
|
|
102
102
|
takeHtml: (htmlContent: string, regex: RegExp) => string[];
|
|
103
|
-
toBlobUrl: (part: BlobPart, mime
|
|
103
|
+
toBlobUrl: (part: BlobPart, mime?: string) => string;
|
|
104
|
+
workerURL: (fn: Function) => string;
|
|
104
105
|
};
|
|
105
106
|
};
|
|
106
107
|
export default dMini;
|
package/bin/tiny/web.d.ts
CHANGED
|
@@ -109,7 +109,8 @@ declare const dWeb: {
|
|
|
109
109
|
legacyCopy: (text: string) => boolean;
|
|
110
110
|
takeHtmlLinks: (htmlContent: string) => never[];
|
|
111
111
|
takeHtml: (htmlContent: string, regex: RegExp) => string[];
|
|
112
|
-
toBlobUrl: (part: BlobPart, mime
|
|
112
|
+
toBlobUrl: (part: BlobPart, mime?: string) => string;
|
|
113
|
+
workerURL: (fn: Function) => string;
|
|
113
114
|
};
|
|
114
115
|
rsa: {
|
|
115
116
|
generateKeys: () => Promise<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ddan-js",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ddan-js",
|
|
@@ -91,9 +91,9 @@
|
|
|
91
91
|
"coverageThreshold": {
|
|
92
92
|
"global": {
|
|
93
93
|
"branches": 90,
|
|
94
|
-
"functions":
|
|
94
|
+
"functions": 90,
|
|
95
95
|
"lines": 95,
|
|
96
|
-
"statements":
|
|
96
|
+
"statements": 90
|
|
97
97
|
}
|
|
98
98
|
},
|
|
99
99
|
"collectCoverageFrom": [
|