Skip to content

Commit

Permalink
Drop ArrayChain
Browse files Browse the repository at this point in the history
Refs: #420

PR-URL: #433
  • Loading branch information
o-rumiantsev authored and nechaido committed Jun 19, 2019
1 parent 73d4933 commit 5b70ccb
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 295 deletions.
1 change: 0 additions & 1 deletion .metadocrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"lib/adapters.js",
"lib/array.js",
"lib/async-iterator.js",
"lib/chain.js",
"lib/collector.js",
"lib/composition.js",
"lib/control.js",
Expand Down
47 changes: 0 additions & 47 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,52 +366,6 @@ Create an AsyncIterator instance

#### AsyncIterator.prototype.enumerate()

### for(array)

- `array`: [`<Array>`][array] start mutations from this data

_Returns:_ [`<ArrayChain>`][arraychain]

Create ArrayChain instance

### class ArrayChain

#### ArrayChain.prototype.constructor(array)

#### ArrayChain.prototype.execute(err)

#### ArrayChain.prototype.fetch(fn)

#### ArrayChain.prototype.map(fn)

#### ArrayChain.prototype.filter(fn)

#### ArrayChain.prototype.reduce(fn)

#### ArrayChain.prototype.each(fn)

#### ArrayChain.prototype.series(fn)

#### ArrayChain.prototype.find(fn)

#### ArrayChain.prototype.concat(...args)

#### ArrayChain.prototype.slice(...args)

#### ArrayChain.prototype.includes(...args)

#### ArrayChain.prototype.reverse(...args)

#### ArrayChain.prototype.sort(...args)

#### ArrayChain.prototype.shift(...args)

#### ArrayChain.prototype.unshift(...args)

#### ArrayChain.prototype.push(...args)

#### ArrayChain.prototype.pop(...args)

### collect(expected)

- `expected`: [`<number>`][number]|[`<string[]>`][string]
Expand Down Expand Up @@ -915,7 +869,6 @@ Set timeout for asynchronous function execution

[asynciterable]: https://tc39.github.io/ecma262/#sec-asynciterable-interface
[asynciterator]: #class-asynciterator
[arraychain]: #class-arraychain
[collector]: #class-collector
[queue]: #class-queue
[object]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
Expand Down
132 changes: 0 additions & 132 deletions lib/chain.js

This file was deleted.

1 change: 0 additions & 1 deletion metasync.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const submodules = [
'composition', // Unified abstraction
'adapters', // Adapters to convert different async contracts
'array', // Array utilities
'chain', // Process arrays sync and async array in chain
'collector', // DataCollector and KeyCollector
'control', // Control flow utilities
'do', // Simple chain/do
Expand Down
114 changes: 0 additions & 114 deletions test/chain.js

This file was deleted.

0 comments on commit 5b70ccb

Please sign in to comment.