Skip to content

Drulac/array-async-methods

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

array-async-methods

available methods

  • mapA
  • forEachA
  • filterA
  • reduceA
  • reduceRightA
  • everyA
  • someA
  • findA
  • findIndexA

Provide promise instead of callback. That's return a Promise.

usage

install

npm i array-async-methods

just require in your code the module

require('array-async-methods');

chainability

These methods are also usable on Promise, it's chainable :

filesPath.mapA(filePath=>fsPromised.readFile(filePath,'utf8'))
.someA(async fileContent=>fileContent === 'good', '')

About

extends Array to have support Async methods

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published