cascade-extend 1.0.4 → 2.1.2
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/LICENSE +0 -0
- package/README.md +0 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.js +4 -10
- package/package.json +26 -23
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
export declare function cascadeExtendKeys(scope: object, source: object | undefined, prefix?: string, sep?: string): string[] | undefined;
|
|
2
2
|
export declare function cascadeExtend(scope: object, source: object | undefined, prefix?: string, sep?: string): object | undefined;
|
|
3
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.cascadeExtend = exports.cascadeExtendKeys = void 0;
|
|
4
|
-
const extend_1 = require("@cabloy/extend");
|
|
1
|
+
import { extend } from '@cabloy/extend';
|
|
5
2
|
const __SepDefault = '.';
|
|
6
|
-
function cascadeExtendKeys(scope, source, prefix, sep = __SepDefault) {
|
|
3
|
+
export function cascadeExtendKeys(scope, source, prefix, sep = __SepDefault) {
|
|
7
4
|
if (!source)
|
|
8
5
|
return undefined;
|
|
9
6
|
if (prefix === undefined)
|
|
@@ -30,8 +27,7 @@ function cascadeExtendKeys(scope, source, prefix, sep = __SepDefault) {
|
|
|
30
27
|
// ok
|
|
31
28
|
return keys.length === 0 ? undefined : keys;
|
|
32
29
|
}
|
|
33
|
-
|
|
34
|
-
function cascadeExtend(scope, source, prefix, sep = __SepDefault) {
|
|
30
|
+
export function cascadeExtend(scope, source, prefix, sep = __SepDefault) {
|
|
35
31
|
if (!source)
|
|
36
32
|
return undefined;
|
|
37
33
|
// keys
|
|
@@ -44,9 +40,7 @@ function cascadeExtend(scope, source, prefix, sep = __SepDefault) {
|
|
|
44
40
|
// extend
|
|
45
41
|
const result = {};
|
|
46
42
|
for (const key of keys) {
|
|
47
|
-
|
|
43
|
+
extend(true, result, source[key]);
|
|
48
44
|
}
|
|
49
45
|
return result;
|
|
50
46
|
}
|
|
51
|
-
exports.cascadeExtend = cascadeExtend;
|
|
52
|
-
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,17 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cascade-extend",
|
|
3
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "2.1.2",
|
|
4
5
|
"description": "cascade-extend",
|
|
5
6
|
"publishConfig": {
|
|
6
7
|
"access": "public"
|
|
7
8
|
},
|
|
9
|
+
"author": "zhennann",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"homepage": "https://github.com/zhennann/cascade-extend#readme",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/zhennann/cascade-extend.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/zhennann/cascade-extend/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"cabloy",
|
|
21
|
+
"cascade-extend"
|
|
22
|
+
],
|
|
8
23
|
"exports": {
|
|
9
24
|
".": {
|
|
10
25
|
"types": [
|
|
11
26
|
"./src/index.ts",
|
|
12
27
|
"./dist/index.d.ts"
|
|
13
28
|
],
|
|
14
|
-
"import": "./src/index.ts",
|
|
15
29
|
"default": "./dist/index.js"
|
|
16
30
|
},
|
|
17
31
|
"./package.json": "./package.json"
|
|
@@ -19,27 +33,16 @@
|
|
|
19
33
|
"files": [
|
|
20
34
|
"dist"
|
|
21
35
|
],
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"cabloy",
|
|
30
|
-
"cascade-extend"
|
|
31
|
-
],
|
|
32
|
-
"author": "zhennann",
|
|
33
|
-
"license": "MIT",
|
|
34
|
-
"bugs": {
|
|
35
|
-
"url": "https://github.com/zhennann/cascade-extend/issues"
|
|
36
|
-
},
|
|
37
|
-
"homepage": "https://github.com/zhennann/cascade-extend#readme",
|
|
38
|
-
"devDependencies": {
|
|
39
|
-
"@cabloy/lint": "^4.0.5"
|
|
36
|
+
"scripts": {
|
|
37
|
+
"lint": "eslint .",
|
|
38
|
+
"clean": "rimraf dist tsconfig.build.tsbuildinfo",
|
|
39
|
+
"tsc:publish": "npm run clean && tsc -p tsconfig.build.json",
|
|
40
|
+
"prepublishOnly": "npm run tsc:publish",
|
|
41
|
+
"prepack": "clean-package",
|
|
42
|
+
"postpack": "clean-package restore"
|
|
40
43
|
},
|
|
41
44
|
"dependencies": {
|
|
42
|
-
"@cabloy/extend": "^3.
|
|
45
|
+
"@cabloy/extend": "^3.1.2"
|
|
43
46
|
},
|
|
44
|
-
"
|
|
45
|
-
}
|
|
47
|
+
"gitHead": "0eab9dc4a5622caffe89e7b1b3f02c08ccbc4c4b"
|
|
48
|
+
}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,GAAG,SAAS,EAC1B,MAAM,CAAC,EAAE,MAAM,EACf,GAAG,GAAE,MAAqB,GACzB,MAAM,EAAE,GAAG,SAAS,CAqBtB;AAED,wBAAgB,aAAa,CAC3B,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,GAAG,SAAS,EAC1B,MAAM,CAAC,EAAE,MAAM,EACf,GAAG,GAAE,MAAqB,GACzB,MAAM,GAAG,SAAS,CAapB"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,2CAAwC;AAExC,MAAM,YAAY,GAAG,GAAG,CAAC;AAEzB,SAAgB,iBAAiB,CAC/B,KAAa,EACb,MAA0B,EAC1B,MAAe,EACf,MAAc,YAAY;IAE1B,IAAI,CAAC,MAAM;QAAE,OAAO,SAAS,CAAC;IAC9B,IAAI,MAAM,KAAK,SAAS;QAAE,MAAM,GAAG,EAAE,CAAC;IACtC,SAAS;IACT,IAAI,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;QAC1C,OAAO,GAAG,KAAK,MAAM,IAAI,GAAG,CAAC,OAAO,CAAC,MAAM,GAAG,GAAG,CAAC,KAAK,CAAC,CAAC;IAC3D,CAAC,CAAC,CAAC;IACH,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,SAAS,CAAC;IACxC,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,MAAM;QAAE,OAAO,IAAI,CAAC;IACzD,OAAO;IACP,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;QACjB,OAAO,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC;IACnD,CAAC,CAAC,CAAC;IACH,SAAS;IACT,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;QACvB,IAAI,GAAG,KAAK,MAAM;YAAE,OAAO,IAAI,CAAC;QAChC,MAAM,KAAK,GAAG,GAAG,CAAC,SAAS,CAAC,MAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAC3D,OAAO,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC;IAC5C,CAAC,CAAC,CAAC;IACH,KAAK;IACL,OAAO,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC;AAC9C,CAAC;AA1BD,8CA0BC;AAED,SAAgB,aAAa,CAC3B,KAAa,EACb,MAA0B,EAC1B,MAAe,EACf,MAAc,YAAY;IAE1B,IAAI,CAAC,MAAM;QAAE,OAAO,SAAS,CAAC;IAC9B,OAAO;IACP,MAAM,IAAI,GAAG,iBAAiB,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,CAAC,CAAC;IAC3D,IAAI,CAAC,IAAI;QAAE,OAAO,SAAS,CAAC;IAC5B,UAAU;IACV,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IAC9C,SAAS;IACT,MAAM,MAAM,GAAG,EAAE,CAAC;IAClB,KAAK,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC;QACvB,IAAA,eAAM,EAAC,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;IACpC,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAlBD,sCAkBC"}
|