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

@karmaniverous/entity-tools

Package Overview
Dependencies
Maintainers
0
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@karmaniverous/entity-tools - npm Package Compare versions

Comparing version 0.6.4 to 0.6.5

6

dist/index.d.ts

@@ -231,2 +231,4 @@ /**

*
* If `T` has `string` index signature, properties will be `| undefined`.
*
* @typeParam T - The type to make properties optional.

@@ -238,4 +240,4 @@ * @typeParam U - The properties to make optional.

type MakeOptional<T extends object, U extends keyof T> = {
[P in keyof T]: P extends U ? T[P] | undefined : T[P];
};
[P in keyof T as P extends U ? never : P]: T[P];
} & Partial<Pick<T, U>>;

@@ -242,0 +244,0 @@ /**

@@ -129,3 +129,3 @@ {

"types": "dist/index.d.ts",
"version": "0.6.4",
"version": "0.6.5",
"dependencies": {

@@ -132,0 +132,0 @@ "radash": "^12.1.0"

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