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

1.0.6 • Public • Published

@immutable-array/fill

Immutable Array.prototype.fill().

Install

Install with npm:

npm install @immutable-array/fill

Usage

Same API with Array.prototype.fill().

/**
 * Returns the this object after filling the section identified by start and end with value
 * @param array base array
 * @param value value to fill array section with
 * @param start index to start filling the array at. If start is negative, it is treated as
 * length+start where length is the length of the array.
 * @param end index to stop filling the array at. If end is negative, it is treated as
 * length+end.
 */
export declare function fill<T>(array: Array<T>, value: T, start?: number, end?: number): Array<T>;

Example

import { fill } from "@immutable-array/fill" 
const originalArray = [1, 2, 3];
assert.deepStrictEqual(fill(originalArray, "x"), ["x", "x", "x"]);
assert.deepStrictEqual(fill(originalArray, "x", 1, 2), [1, "x", 3]);

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.6
    12
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.6
    12
  • 1.0.5
    1
  • 1.0.4
    1
  • 1.0.1
    1

Package Sidebar

Install

npm i @immutable-array/fill

Weekly Downloads

15

Version

1.0.6

License

MIT

Unpacked Size

6.24 kB

Total Files

7

Last publish

Collaborators

  • azu