🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

array-every-x

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

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.

3.1.2
latest
Source
npm
Version published
Maintainers
1
Created
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

Array

FAQs

Package last updated on 28 Aug 2019

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