umt 2.9.1 → 2.10.0
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/module/Validate/index.d.ts +1 -0
- package/module/Validate/index.js +1 -0
- package/module/Validate/index.js.map +1 -1
- package/module/Validate/object/core.d.ts +3 -2
- package/module/Validate/object/core.js +5 -0
- package/module/Validate/object/core.js.map +1 -1
- package/module/Validate/object/index.d.ts +1 -0
- package/module/Validate/object/index.js +1 -0
- package/module/Validate/object/index.js.map +1 -1
- package/module/Validate/object/optional.d.ts +2 -0
- package/module/Validate/object/optional.js +15 -0
- package/module/Validate/object/optional.js.map +1 -0
- package/module/Validate/type.d.ts +9 -2
- package/module/es5/Validate/index.d.ts +1 -0
- package/module/es5/Validate/index.js +11 -0
- package/module/es5/Validate/object/core.d.ts +3 -2
- package/module/es5/Validate/object/core.js +5 -0
- package/module/es5/Validate/object/index.d.ts +1 -0
- package/module/es5/Validate/object/index.js +11 -0
- package/module/es5/Validate/object/optional.d.ts +2 -0
- package/module/es5/Validate/object/optional.js +20 -0
- package/module/es5/Validate/type.d.ts +9 -2
- package/module/es5/tsconfig.tsbuildinfo +1 -1
- package/module/es5/types/object/index.d.ts +1 -0
- package/module/es5/types/object/index.js +11 -0
- package/module/es5/types/object/pickPartial.d.ts +6 -0
- package/module/es5/types/object/pickPartial.js +5 -0
- package/module/types/object/index.d.ts +1 -0
- package/module/types/object/index.js +1 -0
- package/module/types/object/index.js.map +1 -1
- package/module/types/object/pickPartial.d.ts +6 -0
- package/module/types/object/pickPartial.js +2 -0
- package/module/types/object/pickPartial.js.map +1 -0
- package/package.json +1 -1
|
@@ -25,6 +25,17 @@ Object.keys(_pickDeepKey).forEach(function (key) {
|
|
|
25
25
|
}
|
|
26
26
|
});
|
|
27
27
|
});
|
|
28
|
+
var _pickPartial = require("./pickPartial");
|
|
29
|
+
Object.keys(_pickPartial).forEach(function (key) {
|
|
30
|
+
if (key === "default" || key === "__esModule") return;
|
|
31
|
+
if (key in exports && exports[key] === _pickPartial[key]) return;
|
|
32
|
+
Object.defineProperty(exports, key, {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function get() {
|
|
35
|
+
return _pickPartial[key];
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
});
|
|
28
39
|
var _shallowObjectValue = require("./shallowObjectValue");
|
|
29
40
|
Object.keys(_shallowObjectValue).forEach(function (key) {
|
|
30
41
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/object/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/object/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pickPartial.js","sourceRoot":"","sources":["../../../src/types/object/pickPartial.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED