mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
14 lines
399 B
JavaScript
14 lines
399 B
JavaScript
'use strict';
|
|
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');
|