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.
18 lines
633 B
18 lines
633 B
'use strict'; |
|
var $ = require('../internals/export'); |
|
var global = require('../internals/global'); |
|
var arrayToReversed = require('../internals/array-to-reversed'); |
|
var toIndexedObject = require('../internals/to-indexed-object'); |
|
var addToUnscopables = require('../internals/add-to-unscopables'); |
|
|
|
var Array = global.Array; |
|
|
|
// `Array.prototype.toReversed` method |
|
// https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.toReversed |
|
$({ target: 'Array', proto: true, forced: true }, { |
|
toReversed: function toReversed() { |
|
return arrayToReversed(toIndexedObject(this), Array); |
|
} |
|
}); |
|
|
|
addToUnscopables('toReversed');
|
|
|