mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 03:55:32 +00:00
21 lines
485 B
JavaScript
21 lines
485 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
|
|
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
|
'use strict';
|
|
|
|
/**
|
|
* Tests if two arrays are equal.
|
|
*
|
|
* @param {unknown} a
|
|
* @param {unknown} b
|
|
* @returns {boolean}
|
|
*/
|
|
function arrayEqual(a, b) {
|
|
if (!Array.isArray(a) || !Array.isArray(b)) return false;
|
|
|
|
if (a.length !== b.length) return false;
|
|
|
|
return a.every((elem, index) => elem === b[index]);
|
|
}
|
|
|
|
module.exports = arrayEqual;
|