Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@goldfishjs/utils

Package Overview
Dependencies
Maintainers
2
Versions
147
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@goldfishjs/utils - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

lib/isEqual.js

1

lib/index.js

@@ -12,1 +12,2 @@ export { default as cache } from './cache';

export { default as interval } from './interval';
export { default as isEqual } from './isEqual';

3

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc