immutable-array-prototype
immutable-array-prototype copied to clipboard
A collection of Immutable Array prototype methods(Per method packages).
We can easy to get out from immutable-array-prototype to native array methods. This concept will be realized by tools like [jscodeshift](https://github.com/facebook/jscodeshift "jscodeshift").
Currently, following behavior. ```js import { copyWithin } from "@immutable-array/copyWithin"; const arrayLike = { length: 5, 3: 1 }; let actual = copyWithin(arrayLike, 0, 3); assert.deepStrictEqual(actual, [1, , , 1,]);...
ES2023
ECMAScript get native support immmutable array methods. - [Change Array by Copy to stage 4, per 2023.01.30 TC39 · tc39/proposals@ad4df84](https://github.com/tc39/proposals/commit/ad4df8435f27f39eda26db3b940ae151980c8015) - [tc39/proposal-change-array-by-copy: Provides additional methods on Array.prototype and TypedArray.prototype to...