f7d839215a1985561002877a99dfa1dbe3ef4588c3d927be5ff1009da75697c151997fd90222748fc38bee28242e4bb683b2259880ccbbb80af5d24eb034f5 367 B

12345678910
  1. 'use strict';
  2. var isPrototypeOf = require('../../internals/object-is-prototype-of');
  3. var method = require('../array/virtual/to-reversed');
  4. var ArrayPrototype = Array.prototype;
  5. module.exports = function (it) {
  6. var own = it.toReversed;
  7. return (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.toReversed)) ? method : own;
  8. };