/** * this functions calls Array.from() or make the same logic if not Exists. * The Array.from() method creates a new, shallow-copied Array instance from an array-like or iterable object. * @param arrLike An array-like or iterable object to convert to an array. * @param mapFunc (optional) Map function to call on every element of the array. * @param thisArgs (optional) Value to use as this when executing mapFn. * @since 1.0.0 */ export default function arrayFrom(arrLike: any, mapFunc?: any, thisArgs?: any): unknown[]; //# sourceMappingURL=arrayFrom.d.ts.map