UNPKG

compare-arrays-ignoring-order

Version:

This is a very simple library containing a function that allows you to compare arrays ignoring their order. This means that if two arrays have some elements mixed up, the function will return true.

2 lines (1 loc) 75 B
export default function isEqualArraysIgnoreOrder(a: any, b: any): boolean;