UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

11 lines (10 loc) 340 B
export default arrayEachRight; /** * A specialized version of `forEachRight` for arrays. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns `array`. */ declare function arrayEachRight(array?: any[], iteratee: Function): any[];