aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/es/instance/reduce-right.js
blob: 6a8802f2d9ba92b74c8402839c5b70efee169ca7 (plain)
1
2
3
4
5
6
7
8
var reduceRight = require('../array/virtual/reduce-right');

var ArrayPrototype = Array.prototype;

module.exports = function (it) {
  var own = it.reduceRight;
  return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduceRight) ? reduceRight : own;
};