@immutable-array/shift
v1.0.6
Published
Immutable Array.prototype.shift.
Downloads
66
Readme
@immutable-array/shift
Immutable Array.prototype.shift()
.
Install
Install with npm:
npm install @immutable-array/shift
Usage
Same API with Array.prototype.shift()
.
/**
* Removes the first element from an array and returns it.
*/
export declare function shift<T>(array: Array<T>): Array<T>;
Example
import { shift } from "@immutable-array/shift"
const originalArray = ["a", "b", "c", "d", "e"];
const resultArray = shift(originalArray);
assert.deepStrictEqual(resultArray, ["b", "c", "d", "e"]);
Changelog
See Releases page.
Running tests
Install devDependencies and Run npm test
:
npm i -d && npm test
Contributing
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