array-has-duplicates

2.0.0 • Public • Published

array-has-duplicates

npm version Build Status Coverage Status

Check if an Array includes duplicated values or not

arrayHasDuplicates([1, 2, 3, 4, 5]); //=> false
arrayHasDuplicates([1, 2, 3, 4, 5, 1]); //=> true

Installation

Use npm.

npm install array-has-duplicates

API

arrayHasDuplicates(array)

array: Array<any>
Return: boolean

It returns true if the array includes at least one pair of duplicated values, otherwise returns false.

arrayHasDuplicates([3, 3, 3]); //=> true
arrayHasDuplicates([3, '3', [3]]); //=> false

"Duplicated" means a value is identical to with another value in the ECMAScript same-value equality level.

arrayHasDuplicates([0, -0]); //=> false

Note that it ignores all empty indexes.

arrayHasDuplicates([, undefined]);
//=> false, though array[0] and array[1] are both `undefined`

License

ISC License © 2018 Shinnosuke Watanabe

Package Sidebar

Install

npm i array-has-duplicates

Weekly Downloads

1

Version

2.0.0

License

ISC

Unpacked Size

4.47 kB

Total Files

5

Last publish

Collaborators

  • shinnn