File "empty.ts"
Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/utils/array/empty/empty.ts
File
size: 137 B (137 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
/**
* Empties the array.
*
* @param array - A array to empty.
*/
export function empty( array: any[] ): void {
array.length = 0;
}