Socket
Book a DemoInstallSign in
Socket

promise-some

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promise-some

Check if some element in an array passes the test and return a Promise

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

promise-some

NPM version build status Test coverage Downloads

Check if some element in an array passes the test and return a Promise.

Installation

$ npm install promise-some

Usage

const some = require('promise-some')

Promise.resolve([1, 2, 3])
  .then(some((val) => val >= 2)))
// => true

Why?

This module is basically equivalent to bluebird.some, but it's handy to have the one function you need instead of a kitchen sink. Modularity! Especially handy if you're serving to the browser and need to some your javascript bundle size.

Works great in the browser with browserify!

See Also

License

MIT

Keywords

bluebird

FAQs

Package last updated on 11 Jul 2015

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