Socket
Socket
Sign inDemoInstall

@empathyco/x-utils

Package Overview
Dependencies
Maintainers
5
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@empathyco/x-utils - npm Package Compare versions

Comparing version 0.1.0-alpha.8 to 0.1.0-alpha.9

4

package.json
{
"name": "@empathyco/x-utils",
"version": "0.1.0-alpha.8",
"version": "0.1.0-alpha.9",
"description": "A utility package for Empathy search",

@@ -45,3 +45,3 @@ "author": "Empathy Systems Corporation S.L.",

},
"gitHead": "b96cdde7f4fe41c6f904c62127648ec8f990e014"
"gitHead": "ea3188a8ed192359c9f64137a1e8065d8908f46d"
}

@@ -36,1 +36,10 @@ /**

export declare type Dictionary<T = any> = Record<string, T>;
/**
* Makes all the properties of the T type optional in depth.
*
* @param T - The type to make all its properties in depth optional.
* @public
*/
export declare type DeepPartial<T> = {
[P in keyof T]?: T[P] extends NonPrimitive ? T[P] extends AnyFunction ? T[P] : DeepPartial<T[P]> : T[P];
};

Sorry, the diff of this file is not supported yet

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