@fangzhongya/utils 0.0.8-11 → 0.0.8-12
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/dist/basic/array/index.d.ts +1 -1
- package/dist/basic/index.d.ts +9 -9
- package/dist/{chunk-6WSP6FLZ.cjs → chunk-2KTCFVJU.cjs} +9 -0
- package/dist/chunk-J3LLPNGV.js +17 -0
- package/dist/{chunk-7KXJO4NI.js → chunk-PZYI5RZA.js} +1 -1
- package/dist/{chunk-36NQW7GX.cjs → chunk-TUTKP6RQ.cjs} +2 -2
- package/dist/css/index.cjs +3 -3
- package/dist/css/index.d.ts +1 -1
- package/dist/css/index.js +2 -2
- package/dist/css/setCss.cjs +2 -2
- package/dist/css/setCss.d.ts +3 -1
- package/dist/css/setCss.js +1 -1
- package/dist/{index-98fa8a0f.d.ts → index-c3b11ffc.d.ts} +2 -2
- package/dist/index.cjs +3 -3
- package/dist/index.d.ts +20 -20
- package/dist/index.js +2 -2
- package/dist/judge/index.d.ts +1 -1
- package/package.json +97 -97
- package/dist/chunk-7IXRH3MU.js +0 -8
- package/dist/{index-a325ab56.d.ts → index-445fe401.d.ts} +1 -1
- package/dist/{index-82b62caf.d.ts → index-a0428c69.d.ts} +1 -1
- package/dist/{index-b16b81dc.d.ts → index-bd1b8c37.d.ts} +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { asyncMergeArray } from './asyncMergeArray.js';
|
|
2
2
|
export { duplicateRemoval } from './duplicateRemoval.js';
|
|
3
|
-
export { isArray } from './isArray.js';
|
|
4
3
|
export { replaceAfter } from './replaceAfter.js';
|
|
4
|
+
export { isArray } from './isArray.js';
|
|
5
5
|
export { toggleArray } from './toggleArray.js';
|
package/dist/basic/index.d.ts
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
export { i as array } from '../index-
|
|
2
|
-
export { i as string } from '../index-f0bbf5f8.js';
|
|
1
|
+
export { i as array } from '../index-bd1b8c37.js';
|
|
3
2
|
export { i as object } from '../index-0f061f5b.js';
|
|
3
|
+
export { i as string } from '../index-f0bbf5f8.js';
|
|
4
4
|
import './array/asyncMergeArray.js';
|
|
5
5
|
import './array/duplicateRemoval.js';
|
|
6
|
-
import './array/isArray.js';
|
|
7
6
|
import './array/replaceAfter.js';
|
|
7
|
+
import './array/isArray.js';
|
|
8
8
|
import './array/toggleArray.js';
|
|
9
|
+
import './object/attrValueSort.js';
|
|
10
|
+
import './object/filterObject.js';
|
|
11
|
+
import './object/isObject.js';
|
|
12
|
+
import './object/isObjectArray.js';
|
|
13
|
+
import './object/mergeObject.js';
|
|
14
|
+
import './object/unmergeObject.js';
|
|
9
15
|
import './string/appearNum.js';
|
|
10
16
|
import './string/appearNumSeat.js';
|
|
11
17
|
import './string/firstLower.js';
|
|
@@ -13,9 +19,3 @@ import './string/firstUpper.js';
|
|
|
13
19
|
import './string/getStartSames.js';
|
|
14
20
|
import './string/getStartSame.js';
|
|
15
21
|
import './string/splitUpper.js';
|
|
16
|
-
import './object/attrValueSort.js';
|
|
17
|
-
import './object/filterObject.js';
|
|
18
|
-
import './object/isObject.js';
|
|
19
|
-
import './object/isObjectArray.js';
|
|
20
|
-
import './object/mergeObject.js';
|
|
21
|
-
import './object/unmergeObject.js';
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// packages/css/setCss.ts
|
|
2
2
|
function setCss(elem, style, value) {
|
|
3
|
+
if (typeof style == "string") {
|
|
4
|
+
set(elem, style, value || "");
|
|
5
|
+
} else {
|
|
6
|
+
Object.keys(style).forEach((key) => {
|
|
7
|
+
set(elem, key, style[key]);
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
function set(elem, style, value) {
|
|
3
12
|
elem.style.setProperty(style, value);
|
|
4
13
|
}
|
|
5
14
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// packages/css/setCss.ts
|
|
2
|
+
function setCss(elem, style, value) {
|
|
3
|
+
if (typeof style == "string") {
|
|
4
|
+
set(elem, style, value || "");
|
|
5
|
+
} else {
|
|
6
|
+
Object.keys(style).forEach((key) => {
|
|
7
|
+
set(elem, key, style[key]);
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
function set(elem, style, value) {
|
|
12
|
+
elem.style.setProperty(style, value);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export {
|
|
16
|
+
setCss
|
|
17
|
+
};
|
|
@@ -6,7 +6,7 @@ var _chunkO2RP4UZQcjs = require('./chunk-O2RP4UZQ.cjs');
|
|
|
6
6
|
var _chunkUGS2F6DKcjs = require('./chunk-UGS2F6DK.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunk2KTCFVJUcjs = require('./chunk-2KTCFVJU.cjs');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
var _chunk5AZGAKWRcjs = require('./chunk-5AZGAKWR.cjs');
|
|
@@ -16,7 +16,7 @@ var css_exports = {};
|
|
|
16
16
|
_chunk5AZGAKWRcjs.__export.call(void 0, css_exports, {
|
|
17
17
|
fetchUnitValue: () => _chunkO2RP4UZQcjs.fetchUnitValue,
|
|
18
18
|
getCss: () => _chunkUGS2F6DKcjs.getCss,
|
|
19
|
-
setCss: () =>
|
|
19
|
+
setCss: () => _chunk2KTCFVJUcjs.setCss
|
|
20
20
|
});
|
|
21
21
|
|
|
22
22
|
|
package/dist/css/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-TUTKP6RQ.cjs');
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
var _chunkO2RP4UZQcjs = require('../chunk-O2RP4UZQ.cjs');
|
|
@@ -7,10 +7,10 @@ var _chunkO2RP4UZQcjs = require('../chunk-O2RP4UZQ.cjs');
|
|
|
7
7
|
var _chunkUGS2F6DKcjs = require('../chunk-UGS2F6DK.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunk2KTCFVJUcjs = require('../chunk-2KTCFVJU.cjs');
|
|
11
11
|
require('../chunk-5AZGAKWR.cjs');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
exports.fetchUnitValue = _chunkO2RP4UZQcjs.fetchUnitValue; exports.getCss = _chunkUGS2F6DKcjs.getCss; exports.setCss =
|
|
16
|
+
exports.fetchUnitValue = _chunkO2RP4UZQcjs.fetchUnitValue; exports.getCss = _chunkUGS2F6DKcjs.getCss; exports.setCss = _chunk2KTCFVJUcjs.setCss;
|
package/dist/css/index.d.ts
CHANGED
package/dist/css/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../chunk-
|
|
1
|
+
import "../chunk-PZYI5RZA.js";
|
|
2
2
|
import {
|
|
3
3
|
fetchUnitValue
|
|
4
4
|
} from "../chunk-QKLVFB74.js";
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
} from "../chunk-5RZYHE3X.js";
|
|
8
8
|
import {
|
|
9
9
|
setCss
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-J3LLPNGV.js";
|
|
11
11
|
import "../chunk-UICA3PK6.js";
|
|
12
12
|
export {
|
|
13
13
|
fetchUnitValue,
|
package/dist/css/setCss.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunk2KTCFVJUcjs = require('../chunk-2KTCFVJU.cjs');
|
|
4
4
|
require('../chunk-5AZGAKWR.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.setCss =
|
|
7
|
+
exports.setCss = _chunk2KTCFVJUcjs.setCss;
|
package/dist/css/setCss.d.ts
CHANGED
package/dist/css/setCss.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { i as index$1 } from './index-
|
|
2
|
-
import { i as index$3 } from './index-f0bbf5f8.js';
|
|
1
|
+
import { i as index$1 } from './index-bd1b8c37.js';
|
|
3
2
|
import { i as index$2 } from './index-0f061f5b.js';
|
|
3
|
+
import { i as index$3 } from './index-f0bbf5f8.js';
|
|
4
4
|
|
|
5
5
|
declare namespace index {
|
|
6
6
|
export {
|
package/dist/index.cjs
CHANGED
|
@@ -67,10 +67,10 @@ require('./chunk-MIC3W2VY.cjs');
|
|
|
67
67
|
require('./chunk-ISHLY7WM.cjs');
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
var
|
|
70
|
+
var _chunkTUTKP6RQcjs = require('./chunk-TUTKP6RQ.cjs');
|
|
71
71
|
require('./chunk-O2RP4UZQ.cjs');
|
|
72
72
|
require('./chunk-UGS2F6DK.cjs');
|
|
73
|
-
require('./chunk-
|
|
73
|
+
require('./chunk-2KTCFVJU.cjs');
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
var _chunkVYMN4FOMcjs = require('./chunk-VYMN4FOM.cjs');
|
|
@@ -87,4 +87,4 @@ require('./chunk-5AZGAKWR.cjs');
|
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
|
|
90
|
-
exports.basic = _chunk2SJNYSOTcjs.basic_exports; exports.css =
|
|
90
|
+
exports.basic = _chunk2SJNYSOTcjs.basic_exports; exports.css = _chunkTUTKP6RQcjs.css_exports; exports.html = _chunkVYMN4FOMcjs.html_exports; exports.iss = _chunkM7CD62S3cjs.iss_exports; exports.judge = _chunkSYXWQKOOcjs.judge_exports; exports.load = _chunkAW3EGUGBcjs.load_exports; exports.log = _chunkJ7SPTSZMcjs.log_exports; exports.name = _chunkSQSYFDCIcjs.name_exports; exports.node = _chunkQZVMLHFWcjs.node_exports; exports.urls = _chunkDREUOE7Lcjs.urls_exports;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,19 +1,26 @@
|
|
|
1
|
-
export { i as basic } from './index-
|
|
1
|
+
export { i as basic } from './index-c3b11ffc.js';
|
|
2
2
|
export { i as html } from './index-da501f98.js';
|
|
3
|
-
export { i as css } from './index-
|
|
4
|
-
export { i as load } from './index-84b0c6c3.js';
|
|
3
|
+
export { i as css } from './index-a0428c69.js';
|
|
5
4
|
export { i as iss } from './index-09cd203a.js';
|
|
6
|
-
export { i as
|
|
5
|
+
export { i as load } from './index-84b0c6c3.js';
|
|
6
|
+
export { i as judge } from './index-445fe401.js';
|
|
7
7
|
export { i as log } from './index-ef15848a.js';
|
|
8
|
-
export { i as
|
|
8
|
+
export { i as name } from './index-a65f6120.js';
|
|
9
9
|
export { i as node } from './index-130ae781.js';
|
|
10
10
|
export { i as urls } from './index-42672b09.js';
|
|
11
|
-
import './index-
|
|
11
|
+
import './index-bd1b8c37.js';
|
|
12
12
|
import './basic/array/asyncMergeArray.js';
|
|
13
13
|
import './basic/array/duplicateRemoval.js';
|
|
14
|
-
import './basic/array/isArray.js';
|
|
15
14
|
import './basic/array/replaceAfter.js';
|
|
15
|
+
import './basic/array/isArray.js';
|
|
16
16
|
import './basic/array/toggleArray.js';
|
|
17
|
+
import './index-0f061f5b.js';
|
|
18
|
+
import './basic/object/attrValueSort.js';
|
|
19
|
+
import './basic/object/filterObject.js';
|
|
20
|
+
import './basic/object/isObject.js';
|
|
21
|
+
import './basic/object/isObjectArray.js';
|
|
22
|
+
import './basic/object/mergeObject.js';
|
|
23
|
+
import './basic/object/unmergeObject.js';
|
|
17
24
|
import './index-f0bbf5f8.js';
|
|
18
25
|
import './basic/string/appearNum.js';
|
|
19
26
|
import './basic/string/appearNumSeat.js';
|
|
@@ -22,29 +29,22 @@ import './basic/string/firstUpper.js';
|
|
|
22
29
|
import './basic/string/getStartSames.js';
|
|
23
30
|
import './basic/string/getStartSame.js';
|
|
24
31
|
import './basic/string/splitUpper.js';
|
|
25
|
-
import './index-0f061f5b.js';
|
|
26
|
-
import './basic/object/attrValueSort.js';
|
|
27
|
-
import './basic/object/filterObject.js';
|
|
28
|
-
import './basic/object/isObject.js';
|
|
29
|
-
import './basic/object/isObjectArray.js';
|
|
30
|
-
import './basic/object/mergeObject.js';
|
|
31
|
-
import './basic/object/unmergeObject.js';
|
|
32
32
|
import './html/htmlEscape.js';
|
|
33
|
-
import './css/fetchUnitValue.js';
|
|
34
33
|
import './css/getCss.js';
|
|
34
|
+
import './css/fetchUnitValue.js';
|
|
35
35
|
import './css/setCss.js';
|
|
36
36
|
import './load/getSynch.js';
|
|
37
37
|
import './load/loadScript.js';
|
|
38
|
+
import './judge/matchs.js';
|
|
39
|
+
import './judge/matchsEnd.js';
|
|
40
|
+
import './judge/matchsStart.js';
|
|
41
|
+
import './judge/matchsWhole.js';
|
|
42
|
+
import './log/styleLog.js';
|
|
38
43
|
import './name/getComponentNames.js';
|
|
39
44
|
import './name/getNames.js';
|
|
40
45
|
import './name/humpToLine.js';
|
|
41
46
|
import './name/lineToLargeHump.js';
|
|
42
47
|
import './name/lineToSmallHump.js';
|
|
43
|
-
import './log/styleLog.js';
|
|
44
|
-
import './judge/matchs.js';
|
|
45
|
-
import './judge/matchsEnd.js';
|
|
46
|
-
import './judge/matchsWhole.js';
|
|
47
|
-
import './judge/matchsStart.js';
|
|
48
48
|
import './node/getPort.js';
|
|
49
49
|
import './urls/getImportUrl.js';
|
|
50
50
|
import './urls/getImportUrlSuffix.js';
|
package/dist/index.js
CHANGED
|
@@ -67,10 +67,10 @@ import "./chunk-MXY4W3K5.js";
|
|
|
67
67
|
import "./chunk-5PX3AFSC.js";
|
|
68
68
|
import {
|
|
69
69
|
css_exports
|
|
70
|
-
} from "./chunk-
|
|
70
|
+
} from "./chunk-PZYI5RZA.js";
|
|
71
71
|
import "./chunk-QKLVFB74.js";
|
|
72
72
|
import "./chunk-5RZYHE3X.js";
|
|
73
|
-
import "./chunk-
|
|
73
|
+
import "./chunk-J3LLPNGV.js";
|
|
74
74
|
import {
|
|
75
75
|
html_exports
|
|
76
76
|
} from "./chunk-XAQM2IVP.js";
|
package/dist/judge/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@fangzhongya/utils",
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.0.8-
|
|
5
|
+
"version": "0.0.8-12",
|
|
6
6
|
"description ": "个人工具库",
|
|
7
7
|
"author": "fangzhongya ",
|
|
8
8
|
"license": "MIT",
|
|
@@ -47,61 +47,21 @@
|
|
|
47
47
|
"import": "./dist/basic/array/index.js",
|
|
48
48
|
"types": "./dist/basic/array/index.d.ts"
|
|
49
49
|
},
|
|
50
|
-
"./basic/array/isArray": {
|
|
51
|
-
"require": "./dist/basic/array/isArray.cjs",
|
|
52
|
-
"import": "./dist/basic/array/isArray.js",
|
|
53
|
-
"types": "./dist/basic/array/isArray.d.ts"
|
|
54
|
-
},
|
|
55
50
|
"./basic/array/replaceAfter": {
|
|
56
51
|
"require": "./dist/basic/array/replaceAfter.cjs",
|
|
57
52
|
"import": "./dist/basic/array/replaceAfter.js",
|
|
58
53
|
"types": "./dist/basic/array/replaceAfter.d.ts"
|
|
59
54
|
},
|
|
55
|
+
"./basic/array/isArray": {
|
|
56
|
+
"require": "./dist/basic/array/isArray.cjs",
|
|
57
|
+
"import": "./dist/basic/array/isArray.js",
|
|
58
|
+
"types": "./dist/basic/array/isArray.d.ts"
|
|
59
|
+
},
|
|
60
60
|
"./basic/array/toggleArray": {
|
|
61
61
|
"require": "./dist/basic/array/toggleArray.cjs",
|
|
62
62
|
"import": "./dist/basic/array/toggleArray.js",
|
|
63
63
|
"types": "./dist/basic/array/toggleArray.d.ts"
|
|
64
64
|
},
|
|
65
|
-
"./basic/string/appearNum": {
|
|
66
|
-
"require": "./dist/basic/string/appearNum.cjs",
|
|
67
|
-
"import": "./dist/basic/string/appearNum.js",
|
|
68
|
-
"types": "./dist/basic/string/appearNum.d.ts"
|
|
69
|
-
},
|
|
70
|
-
"./basic/string/appearNumSeat": {
|
|
71
|
-
"require": "./dist/basic/string/appearNumSeat.cjs",
|
|
72
|
-
"import": "./dist/basic/string/appearNumSeat.js",
|
|
73
|
-
"types": "./dist/basic/string/appearNumSeat.d.ts"
|
|
74
|
-
},
|
|
75
|
-
"./basic/string/firstLower": {
|
|
76
|
-
"require": "./dist/basic/string/firstLower.cjs",
|
|
77
|
-
"import": "./dist/basic/string/firstLower.js",
|
|
78
|
-
"types": "./dist/basic/string/firstLower.d.ts"
|
|
79
|
-
},
|
|
80
|
-
"./basic/string/firstUpper": {
|
|
81
|
-
"require": "./dist/basic/string/firstUpper.cjs",
|
|
82
|
-
"import": "./dist/basic/string/firstUpper.js",
|
|
83
|
-
"types": "./dist/basic/string/firstUpper.d.ts"
|
|
84
|
-
},
|
|
85
|
-
"./basic/string/getStartSames": {
|
|
86
|
-
"require": "./dist/basic/string/getStartSames.cjs",
|
|
87
|
-
"import": "./dist/basic/string/getStartSames.js",
|
|
88
|
-
"types": "./dist/basic/string/getStartSames.d.ts"
|
|
89
|
-
},
|
|
90
|
-
"./basic/string": {
|
|
91
|
-
"require": "./dist/basic/string/index.cjs",
|
|
92
|
-
"import": "./dist/basic/string/index.js",
|
|
93
|
-
"types": "./dist/basic/string/index.d.ts"
|
|
94
|
-
},
|
|
95
|
-
"./basic/string/getStartSame": {
|
|
96
|
-
"require": "./dist/basic/string/getStartSame.cjs",
|
|
97
|
-
"import": "./dist/basic/string/getStartSame.js",
|
|
98
|
-
"types": "./dist/basic/string/getStartSame.d.ts"
|
|
99
|
-
},
|
|
100
|
-
"./basic/string/splitUpper": {
|
|
101
|
-
"require": "./dist/basic/string/splitUpper.cjs",
|
|
102
|
-
"import": "./dist/basic/string/splitUpper.js",
|
|
103
|
-
"types": "./dist/basic/string/splitUpper.d.ts"
|
|
104
|
-
},
|
|
105
65
|
"./basic/object/attrValueSort": {
|
|
106
66
|
"require": "./dist/basic/object/attrValueSort.cjs",
|
|
107
67
|
"import": "./dist/basic/object/attrValueSort.js",
|
|
@@ -137,40 +97,85 @@
|
|
|
137
97
|
"import": "./dist/basic/object/unmergeObject.js",
|
|
138
98
|
"types": "./dist/basic/object/unmergeObject.d.ts"
|
|
139
99
|
},
|
|
100
|
+
"./basic/string/appearNum": {
|
|
101
|
+
"require": "./dist/basic/string/appearNum.cjs",
|
|
102
|
+
"import": "./dist/basic/string/appearNum.js",
|
|
103
|
+
"types": "./dist/basic/string/appearNum.d.ts"
|
|
104
|
+
},
|
|
105
|
+
"./basic/string/appearNumSeat": {
|
|
106
|
+
"require": "./dist/basic/string/appearNumSeat.cjs",
|
|
107
|
+
"import": "./dist/basic/string/appearNumSeat.js",
|
|
108
|
+
"types": "./dist/basic/string/appearNumSeat.d.ts"
|
|
109
|
+
},
|
|
110
|
+
"./basic/string/firstLower": {
|
|
111
|
+
"require": "./dist/basic/string/firstLower.cjs",
|
|
112
|
+
"import": "./dist/basic/string/firstLower.js",
|
|
113
|
+
"types": "./dist/basic/string/firstLower.d.ts"
|
|
114
|
+
},
|
|
115
|
+
"./basic/string/firstUpper": {
|
|
116
|
+
"require": "./dist/basic/string/firstUpper.cjs",
|
|
117
|
+
"import": "./dist/basic/string/firstUpper.js",
|
|
118
|
+
"types": "./dist/basic/string/firstUpper.d.ts"
|
|
119
|
+
},
|
|
120
|
+
"./basic/string/getStartSames": {
|
|
121
|
+
"require": "./dist/basic/string/getStartSames.cjs",
|
|
122
|
+
"import": "./dist/basic/string/getStartSames.js",
|
|
123
|
+
"types": "./dist/basic/string/getStartSames.d.ts"
|
|
124
|
+
},
|
|
125
|
+
"./basic/string/getStartSame": {
|
|
126
|
+
"require": "./dist/basic/string/getStartSame.cjs",
|
|
127
|
+
"import": "./dist/basic/string/getStartSame.js",
|
|
128
|
+
"types": "./dist/basic/string/getStartSame.d.ts"
|
|
129
|
+
},
|
|
130
|
+
"./basic/string": {
|
|
131
|
+
"require": "./dist/basic/string/index.cjs",
|
|
132
|
+
"import": "./dist/basic/string/index.js",
|
|
133
|
+
"types": "./dist/basic/string/index.d.ts"
|
|
134
|
+
},
|
|
135
|
+
"./basic/string/splitUpper": {
|
|
136
|
+
"require": "./dist/basic/string/splitUpper.cjs",
|
|
137
|
+
"import": "./dist/basic/string/splitUpper.js",
|
|
138
|
+
"types": "./dist/basic/string/splitUpper.d.ts"
|
|
139
|
+
},
|
|
140
140
|
"./basic": {
|
|
141
141
|
"require": "./dist/basic/index.cjs",
|
|
142
142
|
"import": "./dist/basic/index.js",
|
|
143
143
|
"types": "./dist/basic/index.d.ts"
|
|
144
144
|
},
|
|
145
|
+
"./html/htmlEscape": {
|
|
146
|
+
"require": "./dist/html/htmlEscape.cjs",
|
|
147
|
+
"import": "./dist/html/htmlEscape.js",
|
|
148
|
+
"types": "./dist/html/htmlEscape.d.ts"
|
|
149
|
+
},
|
|
145
150
|
"./html": {
|
|
146
151
|
"require": "./dist/html/index.cjs",
|
|
147
152
|
"import": "./dist/html/index.js",
|
|
148
153
|
"types": "./dist/html/index.d.ts"
|
|
149
154
|
},
|
|
150
|
-
"./
|
|
151
|
-
"require": "./dist/
|
|
152
|
-
"import": "./dist/
|
|
153
|
-
"types": "./dist/
|
|
155
|
+
"./css/getCss": {
|
|
156
|
+
"require": "./dist/css/getCss.cjs",
|
|
157
|
+
"import": "./dist/css/getCss.js",
|
|
158
|
+
"types": "./dist/css/getCss.d.ts"
|
|
154
159
|
},
|
|
155
160
|
"./css/fetchUnitValue": {
|
|
156
161
|
"require": "./dist/css/fetchUnitValue.cjs",
|
|
157
162
|
"import": "./dist/css/fetchUnitValue.js",
|
|
158
163
|
"types": "./dist/css/fetchUnitValue.d.ts"
|
|
159
164
|
},
|
|
160
|
-
"./css/
|
|
161
|
-
"require": "./dist/css/
|
|
162
|
-
"import": "./dist/css/
|
|
163
|
-
"types": "./dist/css/
|
|
165
|
+
"./css/setCss": {
|
|
166
|
+
"require": "./dist/css/setCss.cjs",
|
|
167
|
+
"import": "./dist/css/setCss.js",
|
|
168
|
+
"types": "./dist/css/setCss.d.ts"
|
|
164
169
|
},
|
|
165
170
|
"./css": {
|
|
166
171
|
"require": "./dist/css/index.cjs",
|
|
167
172
|
"import": "./dist/css/index.js",
|
|
168
173
|
"types": "./dist/css/index.d.ts"
|
|
169
174
|
},
|
|
170
|
-
"./
|
|
171
|
-
"require": "./dist/
|
|
172
|
-
"import": "./dist/
|
|
173
|
-
"types": "./dist/
|
|
175
|
+
"./iss": {
|
|
176
|
+
"require": "./dist/iss/index.cjs",
|
|
177
|
+
"import": "./dist/iss/index.js",
|
|
178
|
+
"types": "./dist/iss/index.d.ts"
|
|
174
179
|
},
|
|
175
180
|
"./load/getSynch": {
|
|
176
181
|
"require": "./dist/load/getSynch.cjs",
|
|
@@ -187,10 +192,40 @@
|
|
|
187
192
|
"import": "./dist/load/loadScript.js",
|
|
188
193
|
"types": "./dist/load/loadScript.d.ts"
|
|
189
194
|
},
|
|
190
|
-
"./
|
|
191
|
-
"require": "./dist/
|
|
192
|
-
"import": "./dist/
|
|
193
|
-
"types": "./dist/
|
|
195
|
+
"./judge": {
|
|
196
|
+
"require": "./dist/judge/index.cjs",
|
|
197
|
+
"import": "./dist/judge/index.js",
|
|
198
|
+
"types": "./dist/judge/index.d.ts"
|
|
199
|
+
},
|
|
200
|
+
"./judge/matchs": {
|
|
201
|
+
"require": "./dist/judge/matchs.cjs",
|
|
202
|
+
"import": "./dist/judge/matchs.js",
|
|
203
|
+
"types": "./dist/judge/matchs.d.ts"
|
|
204
|
+
},
|
|
205
|
+
"./judge/matchsEnd": {
|
|
206
|
+
"require": "./dist/judge/matchsEnd.cjs",
|
|
207
|
+
"import": "./dist/judge/matchsEnd.js",
|
|
208
|
+
"types": "./dist/judge/matchsEnd.d.ts"
|
|
209
|
+
},
|
|
210
|
+
"./judge/matchsStart": {
|
|
211
|
+
"require": "./dist/judge/matchsStart.cjs",
|
|
212
|
+
"import": "./dist/judge/matchsStart.js",
|
|
213
|
+
"types": "./dist/judge/matchsStart.d.ts"
|
|
214
|
+
},
|
|
215
|
+
"./judge/matchsWhole": {
|
|
216
|
+
"require": "./dist/judge/matchsWhole.cjs",
|
|
217
|
+
"import": "./dist/judge/matchsWhole.js",
|
|
218
|
+
"types": "./dist/judge/matchsWhole.d.ts"
|
|
219
|
+
},
|
|
220
|
+
"./log": {
|
|
221
|
+
"require": "./dist/log/index.cjs",
|
|
222
|
+
"import": "./dist/log/index.js",
|
|
223
|
+
"types": "./dist/log/index.d.ts"
|
|
224
|
+
},
|
|
225
|
+
"./log/styleLog": {
|
|
226
|
+
"require": "./dist/log/styleLog.cjs",
|
|
227
|
+
"import": "./dist/log/styleLog.js",
|
|
228
|
+
"types": "./dist/log/styleLog.d.ts"
|
|
194
229
|
},
|
|
195
230
|
"./name/getComponentNames": {
|
|
196
231
|
"require": "./dist/name/getComponentNames.cjs",
|
|
@@ -222,41 +257,6 @@
|
|
|
222
257
|
"import": "./dist/name/lineToSmallHump.js",
|
|
223
258
|
"types": "./dist/name/lineToSmallHump.d.ts"
|
|
224
259
|
},
|
|
225
|
-
"./log": {
|
|
226
|
-
"require": "./dist/log/index.cjs",
|
|
227
|
-
"import": "./dist/log/index.js",
|
|
228
|
-
"types": "./dist/log/index.d.ts"
|
|
229
|
-
},
|
|
230
|
-
"./log/styleLog": {
|
|
231
|
-
"require": "./dist/log/styleLog.cjs",
|
|
232
|
-
"import": "./dist/log/styleLog.js",
|
|
233
|
-
"types": "./dist/log/styleLog.d.ts"
|
|
234
|
-
},
|
|
235
|
-
"./judge": {
|
|
236
|
-
"require": "./dist/judge/index.cjs",
|
|
237
|
-
"import": "./dist/judge/index.js",
|
|
238
|
-
"types": "./dist/judge/index.d.ts"
|
|
239
|
-
},
|
|
240
|
-
"./judge/matchs": {
|
|
241
|
-
"require": "./dist/judge/matchs.cjs",
|
|
242
|
-
"import": "./dist/judge/matchs.js",
|
|
243
|
-
"types": "./dist/judge/matchs.d.ts"
|
|
244
|
-
},
|
|
245
|
-
"./judge/matchsEnd": {
|
|
246
|
-
"require": "./dist/judge/matchsEnd.cjs",
|
|
247
|
-
"import": "./dist/judge/matchsEnd.js",
|
|
248
|
-
"types": "./dist/judge/matchsEnd.d.ts"
|
|
249
|
-
},
|
|
250
|
-
"./judge/matchsWhole": {
|
|
251
|
-
"require": "./dist/judge/matchsWhole.cjs",
|
|
252
|
-
"import": "./dist/judge/matchsWhole.js",
|
|
253
|
-
"types": "./dist/judge/matchsWhole.d.ts"
|
|
254
|
-
},
|
|
255
|
-
"./judge/matchsStart": {
|
|
256
|
-
"require": "./dist/judge/matchsStart.cjs",
|
|
257
|
-
"import": "./dist/judge/matchsStart.js",
|
|
258
|
-
"types": "./dist/judge/matchsStart.d.ts"
|
|
259
|
-
},
|
|
260
260
|
"./node/getPort": {
|
|
261
261
|
"require": "./dist/node/getPort.cjs",
|
|
262
262
|
"import": "./dist/node/getPort.js",
|
package/dist/chunk-7IXRH3MU.js
DELETED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { matchs } from './judge/matchs.js';
|
|
2
2
|
import { matchsEnd } from './judge/matchsEnd.js';
|
|
3
|
-
import { matchsWhole } from './judge/matchsWhole.js';
|
|
4
3
|
import { matchsStart } from './judge/matchsStart.js';
|
|
4
|
+
import { matchsWhole } from './judge/matchsWhole.js';
|
|
5
5
|
|
|
6
6
|
declare const index_matchs: typeof matchs;
|
|
7
7
|
declare const index_matchsEnd: typeof matchsEnd;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { asyncMergeArray } from './basic/array/asyncMergeArray.js';
|
|
2
2
|
import { duplicateRemoval } from './basic/array/duplicateRemoval.js';
|
|
3
|
-
import { isArray } from './basic/array/isArray.js';
|
|
4
3
|
import { replaceAfter } from './basic/array/replaceAfter.js';
|
|
4
|
+
import { isArray } from './basic/array/isArray.js';
|
|
5
5
|
import { toggleArray } from './basic/array/toggleArray.js';
|
|
6
6
|
|
|
7
7
|
declare const index_asyncMergeArray: typeof asyncMergeArray;
|