Socket
Socket
Sign inDemoInstall

@ndhoule/every

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ndhoule/every

Check if a `predicate` function returns true for all values in a `collection`.


Version published
Weekly downloads
68K
increased by22.59%
Maintainers
1
Install size
37.7 kB
Created
Weekly downloads
 

Changelog

Source

2.0.1

  • Bump @ndhoule/each dependency to fix Browserify builds

Readme

Source

every CI

Check if a predicate function returns true for all values in a collection.

Installation

$ component install ndhoule/every
$ npm install @ndhoule/every

API

every(predicate : Function, collection : Array|Object|String)

var isEven = function(num) { return num % 2 === 0; };

every(isEven, []); // => false
every(isEven, [1, 2]); // => false
every(isEven, [2, 4, 6]); // => true

License

Released under the MIT license.

Keywords

FAQs

Last updated on 02 May 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc