Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 262 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 262 Bytes

Just load the package by importing it

require('array-equals');

[1,2,3].equals([1,2,3]) // true
[1,2,3].equals([4,5,6]) // false

Works with Typescript!

import 'array-equals';

[1,2,3].equals([1,2,3]) // true
[1,2,3].equals([4,5,6]) // false