@immutable-array/push
TypeScript icon, indicating that this package has built-in type declarations

1.0.6 • Public • Published

@immutable-array/push

Immutable Array.prototype.push()

Install

Install with npm:

npm install @immutable-array/push

Usage

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>;

Example

import { push } from "@immutable-array/push";
const originalArray = ["a", "b", "c", "d", "e"];
const resultArray = push(originalArray, "f", "g");
assert.ok(originalArray !== resultArray);        

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.

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

License

MIT © azu

Readme

Keywords

Package Sidebar

Install

npm i @immutable-array/push

Weekly Downloads

12

Version

1.0.6

License

MIT

Unpacked Size

5.04 kB

Total Files

7

Last publish

Collaborators

  • azu