/** * @module helpers/checker */ /** * Check if element is array */ export function isArray(elm: unknown): elm is T[] { return Array.isArray(elm); }