New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@myparcel/ts-utils

Package Overview
Dependencies
Maintainers
3
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@myparcel/ts-utils - npm Package Compare versions

Comparing version 1.7.0 to 1.8.0

7

lib/index.d.ts

@@ -80,2 +80,7 @@ /**

/**
* Compares two objects and returns true if they are equal
*/
declare const objectIsEqual: (a: unknown, b: unknown) => boolean;
declare const partitionArray: <I>(array: I[] | null | undefined, predicate: (item: I) => boolean) => I[][];

@@ -93,2 +98,2 @@

export { ArrayWithOneOrMore, MakeOptional, OneOrMore, PromiseOr, ReadonlyOr, RecursivePartial, RecursiveRequired, Replace, RequireOnly, ResolvePromise, asyncEvery, asyncSome, isEnumValue, isInArray, isOfType, isUndefined, partitionArray, removePropertiesWith, toArray };
export { ArrayWithOneOrMore, MakeOptional, OneOrMore, PromiseOr, ReadonlyOr, RecursivePartial, RecursiveRequired, Replace, RequireOnly, ResolvePromise, asyncEvery, asyncSome, isEnumValue, isInArray, isOfType, isUndefined, objectIsEqual, partitionArray, removePropertiesWith, toArray };

@@ -37,2 +37,5 @@ // src/type-guards/isEnumValue.ts

// src/utils/objectIsEqual.ts
var objectIsEqual = (a, b) => JSON.stringify(a) === JSON.stringify(b);
// src/utils/partitionArray.ts

@@ -76,2 +79,3 @@ var partitionArray = (array, predicate) => {

isUndefined,
objectIsEqual,
partitionArray,

@@ -78,0 +82,0 @@ removePropertiesWith,

2

package.json
{
"name": "@myparcel/ts-utils",
"version": "1.7.0",
"version": "1.8.0",
"description": "TypeScript utilities",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

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