array-fill

Polyfill for Array.prototype.fill.

Usage no npm install needed!

<script type="module">
  import arrayFill from 'https://cdn.skypack.dev/array-fill';
</script>

README

array-fill Build Status

Polyfill for Array.prototype.fill.

testling badge

Usage

Functionally:

var fill = require('array-fill');

console.log(fill([1, 2, 3], 4));
// => [ 4, 4, 4 ]

console.log(fill([1, 2, 3], 4, 1));
// => [ 1, 4, 4 ]

From Array object:

require('array-fill/shim');

var array = [1, 2, 3];
array.fill(4, -3, -2);

console.log(array);
// => [ 4, 2, 3 ]

License

MIT © Shogo Sensui