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.
19 lines
666 B
19 lines
666 B
'use strict'; |
|
var $ = require('../internals/export'); |
|
var uncurryThis = require('../internals/function-uncurry-this'); |
|
var isArray = require('../internals/is-array'); |
|
|
|
var un$Reverse = uncurryThis([].reverse); |
|
var test = [1, 2]; |
|
|
|
// `Array.prototype.reverse` method |
|
// https://tc39.es/ecma262/#sec-array.prototype.reverse |
|
// fix for Safari 12.0 bug |
|
// https://bugs.webkit.org/show_bug.cgi?id=188794 |
|
$({ target: 'Array', proto: true, forced: String(test) === String(test.reverse()) }, { |
|
reverse: function reverse() { |
|
// eslint-disable-next-line no-self-assign -- dirty hack |
|
if (isArray(this)) this.length = this.length; |
|
return un$Reverse(this); |
|
} |
|
});
|
|
|