npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

@arr/includes

1.0.1

@lukeed

npmHomeRepoSnykSocket
Downloads:13
$ npm install @arr/includes
DailyWeeklyMonthlyYearly

@arr/includes

A tiny, faster alternative to native Array.prototype.includes

Install

$ npm install --save @arr/includes

Usage

import includes from '@arr/includes';

const foo = ['a', 'b', 'c', 'd'];

includes(foo, 'c');
//=> true
includes(foo, 'g');
//=> false
includes(foo, 'b', 2);
//=> false

API

includes(arr, item[, fromIndex])

arr

Type: Array
The array to iterate upon.

item

Type: Mixed
The element to search for.

fromIndex

Type: Integer
Default: 0
The position in the arr at which to begin searching.

License

MIT © Luke Edwards