summaryrefslogtreecommitdiff
path: root/lib/queue
diff options
context:
space:
mode:
Diffstat (limited to 'lib/queue')
-rw-r--r--lib/queue/.editorconfig10
-rw-r--r--lib/queue/.gitignore8
-rw-r--r--lib/queue/.jscsrc3
-rw-r--r--lib/queue/.jshintrc29
-rw-r--r--lib/queue/README.md13
-rw-r--r--lib/queue/index.js9
-rw-r--r--lib/queue/package.json20
7 files changed, 0 insertions, 92 deletions
diff --git a/lib/queue/.editorconfig b/lib/queue/.editorconfig
deleted file mode 100644
index 7f502d4..0000000
--- a/lib/queue/.editorconfig
+++ /dev/null
@@ -1,10 +0,0 @@
-# editorconfig.org
-root = true
-
-[*]
-end_of_line = lf
-charset = utf-8
-trim_trailing_whitespace = true
-insert_final_newline = true
-indent_style = space
-indent_size = 4
diff --git a/lib/queue/.gitignore b/lib/queue/.gitignore
deleted file mode 100644
index 8feeb01..0000000
--- a/lib/queue/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-node_modules
-dist
-perf/versions
-nyc_output
-coverage
-*.log
-.DS_Store
-npm-debug.log
diff --git a/lib/queue/.jscsrc b/lib/queue/.jscsrc
deleted file mode 100644
index b8cfa17..0000000
--- a/lib/queue/.jscsrc
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "validateIndentation": 4
-} \ No newline at end of file
diff --git a/lib/queue/.jshintrc b/lib/queue/.jshintrc
deleted file mode 100644
index 76be34a..0000000
--- a/lib/queue/.jshintrc
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- // Enforcing options
- "eqeqeq": false,
- "forin": true,
- "indent": 4,
- "noarg": true,
- "undef": true,
- "unused": true,
- "trailing": true,
- "evil": true,
- "laxcomma": true,
-
- // Relaxing options
- "onevar": false,
- "asi": false,
- "eqnull": true,
- "expr": false,
- "loopfunc": true,
- "sub": true,
- "browser": true,
- "node": true,
- "globals": {
- "self": true,
- "define": true,
- "describe": true,
- "context": true,
- "it": true
- }
-}
diff --git a/lib/queue/README.md b/lib/queue/README.md
deleted file mode 100644
index 9fab925..0000000
--- a/lib/queue/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# async.queue
-
-![Last version](https://img.shields.io/github/tag/async-js/async.queue.svg?style=flat-square)
-[![Dependency status](http://img.shields.io/david/async-js/async.queue.svg?style=flat-square)](https://david-dm.org/async-js/async.queue)
-[![Dev Dependencies Status](http://img.shields.io/david/dev/async-js/async.queue.svg?style=flat-square)](https://david-dm.org/async-js/async.queue#info=devDependencies)
-[![NPM Status](http://img.shields.io/npm/dm/async.queue.svg?style=flat-square)](https://www.npmjs.org/package/async.queue)
-[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/kikobeats)
-
-> [async#queue](https://github.com/async-js/async#async.queue) method as module.
-
-## License
-
-MIT © [async-js](https://github.com/async-js)
diff --git a/lib/queue/index.js b/lib/queue/index.js
deleted file mode 100644
index 9e1b185..0000000
--- a/lib/queue/index.js
+++ /dev/null
@@ -1,9 +0,0 @@
-'use strict';
-
-var queue = require('async.util.queue');
-
-module.exports = function (worker, concurrency) {
- return queue(function (items, cb) {
- worker(items[0], cb);
- }, concurrency, 1);
-};
diff --git a/lib/queue/package.json b/lib/queue/package.json
deleted file mode 100644
index 93e6f5f..0000000
--- a/lib/queue/package.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "name": "async.queue",
- "description": "async queuemethod as module.",
- "main": "./index.js",
- "repository": {
- "type": "git",
- "url": "https://github.com/caolan/async.git"
- },
- "author": "Caolan McMahon",
- "version": "0.5.2",
- "license": "MIT",
- "dependencies": {
- "async.util.queue": "0.5.2"
- },
- "keywords": [
- "async",
- "async-modularized",
- "queue"
- ]
-}