☰std/array/none Checks if the given array is empty. Type signature <T>(xs?: T[]) => boolean Examples none([]); // ⇒ true Try in REPL none([1, 2, 3]); // ⇒ false Try in REPL Questions How to check if an array is empty? TypeScript source • JavaScript source