UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

12 lines (10 loc) 280 B
function mapToEntries(map) { const arr = new Array(map.size); const keys = map.keys(); const values = map.values(); for (let i = 0; i < arr.length; i++) { arr[i] = [keys.next().value, values.next().value]; } return arr; } export { mapToEntries };