Socket
Socket
Sign inDemoInstall

promise.mapper

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

promise.mapper


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

promise.mapper

"Returns a promise containing the result of the promisified mappingFn on its elements. Order is preserved. Additionally, rejection occurs if any of the promises reject.

[![NPM][promise-mapper-icon]][promise-mapper-url]

Install

$ npm install promise.mapper --save

Usage

var map = require('promise.mapper')
var makeRequest = (input) => http.Get(input).then(data => data.statusCode)

map([
  'test.com',
  'malwarehacks42.ru'
  requestGoogle, // promise
], makeRequest).then((result) => {
  console.log(result) // [200, 400, 200]
})

API

map(input..., mapperFn) -> promise

Returns a promise containing the result of the promisified mappingFn on its elements. Order is preserved. Additionally, rejection occurs if any of the promises reject.

input Iterable<Promise|any>

A sequence of promises or instanceof Iterable

mapperFn Function

A mapping function that returns a promise

Keywords

FAQs

Last updated on 26 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc