mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
11 lines
367 B
JavaScript
11 lines
367 B
JavaScript
'use strict';
|
|
var isPrototypeOf = require('../../internals/object-is-prototype-of');
|
|
var method = require('../array/virtual/to-reversed');
|
|
|
|
var ArrayPrototype = Array.prototype;
|
|
|
|
module.exports = function (it) {
|
|
var own = it.toReversed;
|
|
return (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.toReversed)) ? method : own;
|
|
};
|