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

promist

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promist - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

2

package.json
{
"name": "promist",
"version": "0.5.0",
"version": "0.5.1",
"author": "Rafa Mel",

@@ -5,0 +5,0 @@ "description": "A dependable Promises and async utility belt",

@@ -39,3 +39,3 @@ # Promist

* [`compose()`](#composefns-function-function)
* [`control()`](#controlgenerator-function-function)
* [`control()`](#controltest-function-generator-function-function)
* [`isPromise()`](#ispromiseobject-any-boolean)

@@ -42,0 +42,0 @@ * [*Collections*:](#collections) Handled either in *parallel* or *series.*

@@ -12,4 +12,4 @@ /**

export interface IDeferrable {
resolve: (val: any) => void;
reject: (val: any) => void;
resolve: (val?: any) => void;
reject: (reason: Error) => void;
}

@@ -16,0 +16,0 @@ export interface IStatus {

@@ -11,3 +11,3 @@ /**

executor: (
resolve: (val: any) => void,
resolve: (val?: any) => void,
reject: (reason: Error) => void

@@ -14,0 +14,0 @@ ) => void

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