@splidejs/svelte-splide
Version:
Svelte component for the Splide slider/carousel.
10 lines (9 loc) • 322 B
TypeScript
/**
* Checks if provided two arrays are shallowly equal or not.
*
* @param array1 - An array to test.
* @param array2 - Anther array to test.
*
* @return `true` if they are considered as equal, or otherwise `false`.
*/
export declare function isEqualShallow(array1: unknown[], array2: unknown[]): boolean;