@n3okill/utils
Version:
Many javascript helpers
8 lines (7 loc) • 384 B
TypeScript
/**
* If the two arrays are of the same length, and they have the same number of elements, then the
* elements of the two arrays are compared. If they are all equal, then the two arrays are equal
* @param {T} a - The first array to compare.
* @param {T} b - The array to compare to a.
*/
export declare function equalTypedArray<T extends NodeJS.TypedArray>(a: T, b: T): boolean;