Skip to content

Commit 0d770c0

Browse files
o-rumiantsevnechaido
authored andcommitted
Drop ArrayChain
Refs: #420 PR-URL: #433
1 parent 85509e9 commit 0d770c0

File tree

5 files changed

+0
-295
lines changed

5 files changed

+0
-295
lines changed

.metadocrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"lib/adapters.js",
88
"lib/array.js",
99
"lib/async-iterator.js",
10-
"lib/chain.js",
1110
"lib/collector.js",
1211
"lib/composition.js",
1312
"lib/control.js",

README.md

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -366,52 +366,6 @@ Create an AsyncIterator instance
366366

367367
#### AsyncIterator.prototype.enumerate()
368368

369-
### for(array)
370-
371-
- `array`: [`<Array>`][array] start mutations from this data
372-
373-
_Returns:_ [`<ArrayChain>`][arraychain]
374-
375-
Create ArrayChain instance
376-
377-
### class ArrayChain
378-
379-
#### ArrayChain.prototype.constructor(array)
380-
381-
#### ArrayChain.prototype.execute(err)
382-
383-
#### ArrayChain.prototype.fetch(fn)
384-
385-
#### ArrayChain.prototype.map(fn)
386-
387-
#### ArrayChain.prototype.filter(fn)
388-
389-
#### ArrayChain.prototype.reduce(fn)
390-
391-
#### ArrayChain.prototype.each(fn)
392-
393-
#### ArrayChain.prototype.series(fn)
394-
395-
#### ArrayChain.prototype.find(fn)
396-
397-
#### ArrayChain.prototype.concat(...args)
398-
399-
#### ArrayChain.prototype.slice(...args)
400-
401-
#### ArrayChain.prototype.includes(...args)
402-
403-
#### ArrayChain.prototype.reverse(...args)
404-
405-
#### ArrayChain.prototype.sort(...args)
406-
407-
#### ArrayChain.prototype.shift(...args)
408-
409-
#### ArrayChain.prototype.unshift(...args)
410-
411-
#### ArrayChain.prototype.push(...args)
412-
413-
#### ArrayChain.prototype.pop(...args)
414-
415369
### collect(expected)
416370

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

916870
[asynciterable]: https://tc39.github.io/ecma262/#sec-asynciterable-interface
917871
[asynciterator]: #class-asynciterator
918-
[arraychain]: #class-arraychain
919872
[collector]: #class-collector
920873
[queue]: #class-queue
921874
[object]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object

lib/chain.js

Lines changed: 0 additions & 132 deletions
This file was deleted.

metasync.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const submodules = [
77
'composition', // Unified abstraction
88
'adapters', // Adapters to convert different async contracts
99
'array', // Array utilities
10-
'chain', // Process arrays sync and async array in chain
1110
'collector', // DataCollector and KeyCollector
1211
'control', // Control flow utilities
1312
'do', // Simple chain/do

test/chain.js

Lines changed: 0 additions & 114 deletions
This file was deleted.

0 commit comments

Comments
 (0)