Socket
Socket
Sign inDemoInstall

array-every-x

Package Overview
Dependencies
45
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    array-every-x

Tests that all elements in the array pass the provided function.


Version published
Weekly downloads
32
increased by39.13%
Maintainers
1
Install size
4.40 MB
Created
Weekly downloads
 

Readme

Source

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

array-every-x

Tests that all elements in the array pass the provided function.

module.exportsboolean

This method tests whether all elements in the array pass the test implemented by the provided function.

Kind: Exported member
Returns: boolean - true if the callback function returns a truthy value for every array element; otherwise, false.
Throws:

  • TypeError If array is null or undefined.
  • TypeError If callBack is not a function.
ParamTypeDescription
arrayarrayThe array to iterate over.
callBackfunctionFunction to test for each element.
[thisArg]*Value to use as this when executing callback.

Example

import every from 'array-every-x';

function isBigEnough(element, index, array) {
  return element >= 10;
}

console.log(every([12, 5, 8, 130, 44], isBigEnough)); // false
console.log(every([12, 54, 18, 130, 44], isBigEnough)); // true

Keywords

FAQs

Last updated on 28 Aug 2019

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