Socket
Book a DemoInstallSign in
Socket

@bemoje/arr-every

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bemoje/arr-every

Returns true if the predicate is satisfied for every element of the passed array; otherwise false.

latest
Source
npmnpm
Version
1.2.1
Version published
Maintainers
1
Created
Source

@bemoje/arr-every

Returns true if the predicate is satisfied for every element of the passed array; otherwise false.

Version

NPM version

Travis CI

dependencies

Dependencies

dependencies

Stats

NPM downloads Forks

Donate

Buy Me A Beer donate button PayPal donate button

Installation

npm install @bemoje/arr-every
npm install --save @bemoje/arr-every
npm install --save-dev @bemoje/arr-every

Usage

import arrEvery from '@bemoje/arr-every'

const arr = [1, 2, 3, 4, 5]

arrEvery(arr, (num) => {
	return num > 0
})
//=> true

arrEvery(arr, (num) => {
	return num > 3
})
//=> false

Tests

Uses Jest to test module functionality. Run tests to get coverage details.

npm run test

API

arrEvery

Returns

true if the predicate is satisfied for every element of the passed array; otherwise false.

Parameters
  • arr Array The array

  • callback predicate A callback predicate

Returns

boolean

predicate

Type: Function

Parameters
  • element any The array element

  • index number The element's index in the array

  • arr Array The array

Returns

boolean

Keywords

returns

FAQs

Package last updated on 30 Apr 2020

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