Hikidashi Unsafe#Hikidashi's Unsafe library provides more performant solutions than the safe library and any other alternative library, including naive implementations in pure JS.Example#Using map in-place with Hikidashi Unsafeimport map from 'hikidashi/unsafe/array/mapip.mjs'; const series = map(Array(10).fill(0), (_, x) => x * 2);console.log(series);Copy