|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
399 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 | var $ = require('../internals/export');
|
|---|
| 3 | var fill = require('../internals/array-fill');
|
|---|
| 4 | var addToUnscopables = require('../internals/add-to-unscopables');
|
|---|
| 5 |
|
|---|
| 6 | // `Array.prototype.fill` method
|
|---|
| 7 | // https://tc39.es/ecma262/#sec-array.prototype.fill
|
|---|
| 8 | $({ target: 'Array', proto: true }, {
|
|---|
| 9 | fill: fill
|
|---|
| 10 | });
|
|---|
| 11 |
|
|---|
| 12 | // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|---|
| 13 | addToUnscopables('fill');
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.