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

utilium

Package Overview
Dependencies
Maintainers
0
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

utilium - npm Package Compare versions

Comparing version 0.5.5 to 0.5.6

4

dist/types.d.ts

@@ -191,2 +191,6 @@ /**

};
/**
* Makes properties with keys assignable to K in T optional
*/
export type WithOptional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
export {};

2

package.json
{
"name": "utilium",
"version": "0.5.5",
"version": "0.5.6",
"description": "Typescript utilies",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -230,1 +230,6 @@ /**

export type WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] };
/**
* Makes properties with keys assignable to K in T optional
*/
export type WithOptional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
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