Socket
Socket
Sign inDemoInstall

@dxos/util

Package Overview
Dependencies
Maintainers
23
Versions
3018
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dxos/util - npm Package Compare versions

Comparing version 2.16.3 to 2.16.4

4

dist/src/types.d.ts

@@ -6,2 +6,6 @@ export declare type MaybePromise<T> = T | Promise<T>;

export declare type Falsy = false | 0 | '' | null | undefined;
/**
* A function returning a value or a value itself.
*/
export declare type MaybeFunction<T> = T | (() => T);
//# sourceMappingURL=types.d.ts.map

6

package.json
{
"name": "@dxos/util",
"version": "2.16.3",
"version": "2.16.4",
"description": "Temporary bucket for misc functions, which should graduate into separate packages.",

@@ -27,4 +27,4 @@ "bugs": {

"dependencies": {
"@dxos/crypto": "2.16.3",
"@dxos/debug": "2.16.3",
"@dxos/crypto": "2.16.4",
"@dxos/debug": "2.16.4",
"@types/node": "^14.0.9"

@@ -31,0 +31,0 @@ },

@@ -11,1 +11,6 @@ //

export type Falsy = false | 0 | '' | null | undefined
/**
* A function returning a value or a value itself.
*/
export type MaybeFunction<T> = T | (() => T)

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