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

queue

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

queue - npm Package Compare versions

Comparing version 3.1.0 to 4.0.0

LICENSE

4

package.json
{
"name": "queue",
"version": "3.1.0",
"version": "4.0.0",
"description": "asynchronous function queue with adjustable concurrency",

@@ -35,3 +35,3 @@ "keywords": [

"author": "Jesse Tane <jesse.tane@gmail.com>",
"license": "WTFPL"
"license": "MIT"
}
```
____ __ _____ __ _____
____ __ _____ __ _____
/ __ `/ / / / _ \/ / / / _ \
/ /_/ / /_/ / __/ /_/ / __/
\__, /\__,_/\___/\__,_/\___/
/_/
\__, /\__,_/\___/\__,_/\___/
/_/
```

@@ -21,6 +21,6 @@ Asynchronous function queue with adjustable concurrency.

## Install
`npm install queue`
`npm install queue`
## Test
`npm test`
`npm test`
`npm run test-browser`

@@ -64,3 +64,3 @@

// use the timeout feature to deal with jobs that
// use the timeout feature to deal with jobs that
// take too long or forget to execute a callback

@@ -120,11 +120,11 @@

Mozilla has docs on how these methods work [here](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array).
#### `q.push(element1, ..., elementN)`
#### `q.unshift(element1, ..., elementN)`
#### `q.splice(index , howMany[, element1[, ...[, elementN]]])`
#### `q.pop()`
#### `q.shift()`
#### `q.slice(begin[, end])`
#### `q.reverse()`
#### `q.indexOf(searchElement[, fromIndex])`
#### `q.lastIndexOf(searchElement[, fromIndex])`
#### `q.push(element1, ..., elementN)`
#### `q.unshift(element1, ..., elementN)`
#### `q.splice(index , howMany[, element1[, ...[, elementN]]])`
#### `q.pop()`
#### `q.shift()`
#### `q.slice(begin[, end])`
#### `q.reverse()`
#### `q.indexOf(searchElement[, fromIndex])`
#### `q.lastIndexOf(searchElement[, fromIndex])`

@@ -157,2 +157,4 @@ ## Properties

The latest stable release is published to [npm](http://npmjs.org/queue). Abbreviated changelog below:
* [4.0](https://github.com/jessetane/queue/archive/4.0.0.tar.gz)
* Change license to MIT
* [3.1.x](https://github.com/jessetane/queue/archive/3.0.6.tar.gz)

@@ -172,4 +174,3 @@ * Add .npmignore

This work is free. You can redistribute it and/or modify it under the
terms of the [WTFPL](http://www.wtfpl.net/txt/copying).
No Warranty. The Software is provided "as is" without warranty of any kind, either express or implied, including without limitation any implied warranties of condition, uninterrupted use, merchantability, fitness for a particular purpose, or non-infringement.
terms of the [MIT License](https://opensource.org/licenses/MIT).
See LICENSE for full details.
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