You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
385 B
13 lines
385 B
3 years ago
|
var $ = require('../internals/export');
|
||
|
var fill = require('../internals/array-fill');
|
||
|
var addToUnscopables = require('../internals/add-to-unscopables');
|
||
|
|
||
|
// `Array.prototype.fill` method
|
||
|
// https://tc39.es/ecma262/#sec-array.prototype.fill
|
||
|
$({ target: 'Array', proto: true }, {
|
||
|
fill: fill
|
||
|
});
|
||
|
|
||
|
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
||
|
addToUnscopables('fill');
|