1.0.6 • Published 3 years ago
@immutable-array/unshift v1.0.6
@immutable-array/unshift
Immutable Array.prototype.unshift().
Install
Install with npm:
npm install @immutable-array/unshiftUsage
Same API with Array.prototype.unshift().
/**
* Inserts new elements at the start of an array.
* @param array base Array.
* @param items Elements to insert at the start of the Array.
*/
export declare function unshift<T>(array: Array<T>, ...items: T[]): Array<T>;Example
import { unshift } from "@immutable-array/unshift"
const originalArray = ["a", "b", "c", "d", "e"];
const addingArray = ["f", "g"];
const resultArray = unshift(originalArray, ...addingArray);
assert.deepStrictEqual(resultArray, ["f", "g", "a", "b", "c", "d", "e"]);Changelog
See Releases page.
Running tests
Install devDependencies and Run npm test:
npm i -d && npm testContributing
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
Author
License
MIT © azu