@zodash/doreamon
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -6,2 +6,10 @@ # Change Log | ||
## 0.1.1 (2020-09-18) | ||
**Note:** Version bump only for package @zodash/doreamon | ||
# 0.1.0 (2020-09-18) | ||
@@ -8,0 +16,0 @@ |
@@ -5,2 +5,3 @@ import request from './request'; | ||
import is from './is'; | ||
import ms from './ms'; | ||
declare const _default: { | ||
@@ -20,2 +21,3 @@ request: typeof request; | ||
is: typeof is; | ||
ms: typeof ms; | ||
object: { | ||
@@ -25,2 +27,4 @@ get: typeof import("@zodash/pick").pick; | ||
omit: typeof import("@zodash/omit").omit; | ||
clone: (obj: import("@zcorky/deep-copy").Source) => string | number | boolean | object; | ||
equal: (objA: import("@zcorky/deep-copy").Source, objB: import("@zcorky/deep-copy").Source) => any; | ||
}; | ||
@@ -34,3 +38,8 @@ array: { | ||
}; | ||
func: { | ||
debounce: import("@zcorky/debounce").Debounce; | ||
throttle: import("@zcorky/throttle").Throttle; | ||
memoize: typeof import("@zodash/memoize").memoize; | ||
}; | ||
}; | ||
export default _default; |
@@ -12,5 +12,7 @@ "use strict"; | ||
const is_1 = require("./is"); | ||
const ms_1 = require("./ms"); | ||
const object_1 = require("./object"); | ||
const array_1 = require("./array"); | ||
const string_1 = require("./string"); | ||
const func_1 = require("./func"); | ||
exports.default = { | ||
@@ -26,6 +28,8 @@ request: request_1.default, | ||
is: is_1.default, | ||
ms: ms_1.default, | ||
object: object_1.default, | ||
array: array_1.default, | ||
string: string_1.default, | ||
func: func_1.default, | ||
}; | ||
//# sourceMappingURL=index.js.map |
@@ -8,3 +8,5 @@ import get from './get'; | ||
omit: typeof omit; | ||
clone: (obj: import("@zcorky/deep-copy").Source) => string | number | boolean | object; | ||
equal: (objA: import("@zcorky/deep-copy").Source, objB: import("@zcorky/deep-copy").Source) => any; | ||
}; | ||
export default _default; |
@@ -6,2 +6,4 @@ "use strict"; | ||
const omit_1 = require("./omit"); | ||
const clone_1 = require("./clone"); | ||
const equal_1 = require("./equal"); | ||
exports.default = { | ||
@@ -11,3 +13,5 @@ get: get_1.default, | ||
omit: omit_1.default, | ||
clone: clone_1.default, | ||
equal: equal_1.default, | ||
}; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@zodash/doreamon", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "utils like a doreamon", | ||
@@ -69,21 +69,29 @@ "keywords": [ | ||
"dependencies": { | ||
"@zcorky/deep-copy": "^0.0.2", | ||
"@zcorky/deep-equal": "^0.0.1", | ||
"@zcorky/fz": "^1.2.1", | ||
"@zcorky/is": "^1.0.6", | ||
"@zcorky/is": "^1.0.7", | ||
"@zcorky/moment": "^1.1.0", | ||
"@zcorky/query-string": "^1.0.2", | ||
"@zcorky/storage": "^0.0.2", | ||
"@zodash/error": "^0.0.3", | ||
"@zodash/event": "^0.0.12", | ||
"@zodash/find": "^0.0.20", | ||
"@zodash/format": "^1.1.1", | ||
"@zodash/get": "^1.0.22", | ||
"@zodash/load-js": "^0.1.0", | ||
"@zodash/logger": "^0.1.1", | ||
"@zodash/omit": "^1.0.21", | ||
"@zodash/pick": "^1.0.21", | ||
"@zodash/random": "^1.0.19", | ||
"@zodash/unique": "^0.0.11", | ||
"@zodash/uuid": "^0.0.12" | ||
"@zodash/camel-case": "^0.0.18", | ||
"@zodash/debounce": "^0.0.21", | ||
"@zodash/error": "^0.0.4", | ||
"@zodash/event": "^0.0.13", | ||
"@zodash/find": "^0.0.21", | ||
"@zodash/format": "^1.1.2", | ||
"@zodash/get": "^1.0.23", | ||
"@zodash/load-js": "^0.1.1", | ||
"@zodash/logger": "^0.1.2", | ||
"@zodash/memoize": "^1.0.21", | ||
"@zodash/ms": "^0.0.14", | ||
"@zodash/omit": "^1.0.22", | ||
"@zodash/pick": "^1.0.22", | ||
"@zodash/random": "^1.0.20", | ||
"@zodash/snake-case": "^0.0.15", | ||
"@zodash/throttle": "^0.0.21", | ||
"@zodash/unique": "^0.0.12", | ||
"@zodash/uuid": "^0.0.13" | ||
}, | ||
"gitHead": "cfcbede8f28b064afeed5dce9a68a31652261eed" | ||
"gitHead": "dcbc4fffe9448cf235b5a8dabb09882e38535582" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
22988
99
368
25
+ Added@zcorky/deep-copy@^0.0.2
+ Added@zcorky/deep-equal@^0.0.1
+ Added@zodash/camel-case@^0.0.18
+ Added@zodash/debounce@^0.0.21
+ Added@zodash/memoize@^1.0.21
+ Added@zodash/ms@^0.0.14
+ Added@zodash/snake-case@^0.0.15
+ Added@zodash/throttle@^0.0.21
+ Added@zcorky/debounce@1.0.2(transitive)
+ Added@zcorky/deep-copy@0.0.2(transitive)
+ Added@zcorky/deep-equal@0.0.1(transitive)
+ Added@zcorky/throttle@1.0.0(transitive)
+ Added@zodash/camel-case@0.0.18(transitive)
+ Added@zodash/capitalize@0.0.16(transitive)
+ Added@zodash/debounce@0.0.21(transitive)
+ Added@zodash/error@0.0.4(transitive)
+ Added@zodash/event@0.0.13(transitive)
+ Added@zodash/find@0.0.21(transitive)
+ Added@zodash/match@0.0.21(transitive)
+ Added@zodash/memoize@1.1.7(transitive)
+ Added@zodash/ms@0.0.14(transitive)
+ Added@zodash/once@0.0.12(transitive)
+ Added@zodash/snake-case@0.0.15(transitive)
+ Added@zodash/throttle@0.0.21(transitive)
+ Added@zodash/unique@0.0.12(transitive)
+ Added@zodash/uuid@0.0.13(transitive)
- Removed@zodash/compose@0.0.12(transitive)
- Removed@zodash/error@0.0.3(transitive)
- Removed@zodash/event@0.0.12(transitive)
- Removed@zodash/find@0.0.20(transitive)
- Removed@zodash/once@0.0.11(transitive)
- Removed@zodash/unique@0.0.11(transitive)
- Removed@zodash/uuid@0.0.12(transitive)
Updated@zcorky/is@^1.0.7
Updated@zodash/error@^0.0.4
Updated@zodash/event@^0.0.13
Updated@zodash/find@^0.0.21
Updated@zodash/format@^1.1.2
Updated@zodash/get@^1.0.23
Updated@zodash/load-js@^0.1.1
Updated@zodash/logger@^0.1.2
Updated@zodash/omit@^1.0.22
Updated@zodash/pick@^1.0.22
Updated@zodash/random@^1.0.20
Updated@zodash/unique@^0.0.12
Updated@zodash/uuid@^0.0.13