@goldfishjs/utils
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -12,1 +12,2 @@ export { default as cache } from './cache'; | ||
export { default as interval } from './interval'; | ||
export { default as isEqual } from './isEqual'; |
{ | ||
"name": "@goldfishjs/utils", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "goldfish-utils", | ||
@@ -40,2 +40,3 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"@types/lodash": "^4.14.149", | ||
"lodash.omit": "^4.5.0", | ||
@@ -42,0 +43,0 @@ "lodash.pick": "^4.4.0" |
@@ -12,2 +12,3 @@ export { default as cache } from './cache'; | ||
export { default as interval } from './interval'; | ||
export { default as isEqual } from './isEqual'; | ||
export * from './types'; |
@@ -0,1 +1,2 @@ | ||
import { isEqual } from 'lodash'; | ||
declare type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>; | ||
@@ -55,2 +56,3 @@ declare type Many<T> = T | ReadonlyArray<T>; | ||
export declare type LodashCloneDeep = <T>(value: T) => T; | ||
export declare type LodashIsEqual = typeof isEqual; | ||
export {}; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
136834
32
4185
3
+ Added@types/lodash@^4.14.149
+ Added@types/lodash@4.17.13(transitive)