Immutable Array.prototype.push()
Install with npm:
npm install @immutable-array/push
Same API with Array.prototype.push()
.
/**
* Appends new elements to an array, and returns the new length of the array.
* @param array base Array
* @param items New elements of the Array.
*/
export declare function push<T>(array: Array<T>, ...items: T[]): Array<T>;
import { push } from "@immutable-array/push";
const originalArray = ["a", "b", "c", "d", "e"];
const resultArray = push(originalArray, "f", "g");
assert.ok(originalArray !== resultArray);
See Releases page.
Install devDependencies and Run npm test
:
npm i -d && npm test
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT © azu