UNPKG

@utilify/core

Version:

Modern, strongly typed, and safe utility function library for JavaScript and TypeScript. Includes type checking, manipulation of arrays, objects, strings, dates, colors, numbers, regular expressions, and more. Compatible with Browser, Node.js, Deno, and B

9 lines 313 B
/** * Unzips an array of grouped elements into separate arrays. * @template T * @param {T[][]} zip - The zipped array. * @returns {T[][]} Unzipped arrays. * @throws {TypeError} If zip or its elements are not arrays. */ export default function unzip<T>(zip: T[][]): T[][]; //# sourceMappingURL=unzip.d.ts.map