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

queuefy

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

queuefy - npm Package Compare versions

Comparing version 1.1.6 to 1.1.7

5

CHANGELOG.md

@@ -0,1 +1,6 @@

## [1.1.7](https://github.com/qiwi/queuefy/compare/v1.1.6...v1.1.7) (2022-11-19)
### Fixes & improvements
* docs: update badges ([29b7e75](https://github.com/qiwi/queuefy/commit/29b7e75f59fca7eed02dcec88376ff6314646c74))
## [1.1.6](https://github.com/qiwi/queuefy/compare/v1.1.5...v1.1.6) (2022-11-19)

@@ -2,0 +7,0 @@

5

package.json
{
"name": "queuefy",
"version": "1.1.6",
"alias": "@qiwi/queuefy",
"version": "1.1.7",
"private": false,

@@ -71,3 +72,3 @@ "description": "Wrapper to make any async handler be like a single thread with queue",

"typedoc": "^0.23.20",
"typescript": "4.8.4",
"typescript": "4.9.3",
"ts-jest": "^29.0.3"

@@ -74,0 +75,0 @@ },

3

README.md
# queuefy
[![Build Status](https://travis-ci.com/qiwi/queuefy.svg?branch=master)](https://travis-ci.com/qiwi/queuefy)
[![deps](https://img.shields.io/david/qiwi/queuefy?label=deps)](https://david-dm.org/qiwi/queuefy)
[![CI](https://github.com/qiwi/queuefy/actions/workflows/ci.yaml/badge.svg)](https://github.com/qiwi/queuefy/actions/workflows/ci.yaml)
[![Maintainability](https://api.codeclimate.com/v1/badges/2392bab0fb3bfa330f74/maintainability)](https://codeclimate.com/github/qiwi/queuefy/maintainability)

@@ -5,0 +4,0 @@ [![Test Coverage](https://api.codeclimate.com/v1/badges/2392bab0fb3bfa330f74/test_coverage)](https://codeclimate.com/github/qiwi/queuefy/test_coverage)

import { ICallable } from '@qiwi/substrate';
export declare type TInsideOutPromise = {
export type TInsideOutPromise = {
promise: Promise<any>;

@@ -7,8 +7,8 @@ resolve: ICallable;

};
export declare type IAsyncFn = (...args: any[]) => Promise<any>;
export declare type ITask = {
export type IAsyncFn = (...args: any[]) => Promise<any>;
export type ITask = {
args: any[];
iop: TInsideOutPromise;
};
export declare type ITaskQueue = Array<ITask>;
export type ITaskQueue = Array<ITask>;
/**

@@ -15,0 +15,0 @@ * TODO implement lightweight version of 'inside-out-promise'

import { ICallable } from '@qiwi/substrate';
export declare type TInsideOutPromise = {
export type TInsideOutPromise = {
promise: Promise<any>;

@@ -7,8 +7,8 @@ resolve: ICallable;

};
export declare type IAsyncFn = (...args: any[]) => Promise<any>;
export declare type ITask = {
export type IAsyncFn = (...args: any[]) => Promise<any>;
export type ITask = {
args: any[];
iop: TInsideOutPromise;
};
export declare type ITaskQueue = Array<ITask>;
export type ITaskQueue = Array<ITask>;
/**

@@ -15,0 +15,0 @@ * TODO implement lightweight version of 'inside-out-promise'

import { ICallable } from '@qiwi/substrate';
export declare type TInsideOutPromise = {
export type TInsideOutPromise = {
promise: Promise<any>;

@@ -7,8 +7,8 @@ resolve: ICallable;

};
export declare type IAsyncFn = (...args: any[]) => Promise<any>;
export declare type ITask = {
export type IAsyncFn = (...args: any[]) => Promise<any>;
export type ITask = {
args: any[];
iop: TInsideOutPromise;
};
export declare type ITaskQueue = Array<ITask>;
export type ITaskQueue = Array<ITask>;
/**

@@ -15,0 +15,0 @@ * TODO implement lightweight version of 'inside-out-promise'

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