reduce-right.js 279 Bytes Raw Blame History Permalink 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; };