isEmptyArrayOn this pageisEmptyArrayDetect whether an array is empty.APIfunction isEmptyArray(value: any): value is [];Exampleimport { isEmptyArray } from "@lilib/utils";isEmptyArray([]);// => trueisEmptyArray([""]);// => false