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

vest-utils

Package Overview
Dependencies
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vest-utils - npm Package Compare versions

Comparing version 1.0.0-next-20230621-7b34 to 1.0.0-next-20230623-533c

2

package.json
{
"version": "1.0.0-next-20230621-7b34",
"version": "1.0.0-next-20230623-533c",
"name": "vest-utils",

@@ -4,0 +4,0 @@ "author": "ealush",

@@ -27,3 +27,3 @@ type DropFirst<T extends unknown[]> = T extends [

type OnReturn = {
off: () => void;
off: CB<void>;
};

@@ -83,3 +83,3 @@ type BusType = {

type OnReturn = {
off: () => void;
off: CB<void>;
};

@@ -91,7 +91,4 @@ type BusType = {

}
/**
* @returns a unique numeric id.
*/
declare const seq: () => string;
declare function genSeq(namespace?: string): () => string;
declare const seq: CB<string, any[]>;
declare function genSeq(namespace?: string): CB<string>;
declare function isFunction(value: unknown): value is (...args: unknown[]) => unknown;

@@ -129,3 +126,5 @@ declare function mapFirst<T>(array: T[], callback: (item: T, breakout: (conditional: boolean, value: unknown) => void, index: number) => unknown): any;

S,
(payload?: any) => boolean
CB<boolean, [
payload?: any
]>
];

@@ -136,3 +135,3 @@ };

declare function StateMachine<S extends string, A extends string>(machine: TStateMachine<S, A>): {
getState: () => S;
getState: CB<S>;
transition: (action: A, payload?: any) => void;

@@ -139,0 +138,0 @@ };

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