mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
19 lines
592 B
JavaScript
19 lines
592 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var isArray = require('../internals/is-array');
|
|
|
|
var nativeReverse = [].reverse;
|
|
var test = [1, 2];
|
|
|
|
// `Array.prototype.reverse` method
|
|
// https://tc39.github.io/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
|
|
if (isArray(this)) this.length = this.length;
|
|
return nativeReverse.call(this);
|
|
}
|
|
});
|