atelier/ts/array.ts
2025-02-02 12:24:00 -05:00

4 lines
76 B
TypeScript

export function arrayIsEmpty(a: any[]): boolean {
return a.length === 0;
}