stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
21 lines (16 loc) • 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).
;
/**
* 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;