lodash源码分析之baseEachRight

本文为读 lodash 源码的第一百四十一篇,后续文章会更新到这个仓库中,欢迎 star:pocket-lodash

gitbook也会同步仓库的更新,gitbook地址:pocket-lodash

依赖

import baseForOwnRight from './baseForOwnRight.js'
import isArrayLike from '../isArrayLike.js'

《lodash源码分析之baseForOwnRight》 《lodash源码分析之isArrayLike》

源码分析

baseEachRightbaseEach 的方法类似,不过是从后向前遍历。

源码如下:

function baseEachRight(collection, iteratee) {
  if (collection == null) {
    return collection
  }
  if (!isArrayLike(collection)) {
    return baseForOwnRight(collection, iteratee)
  }
  const iterable = Object(collection)
  let length = collection.length

  while (length--) {
    if (iteratee(iterable[length], length, iterable) === false) {
      break
    }
  }
  return collection
}

baseEach 不太一样的地方有两处。

一是处理 arrayLike 时,调用的是 baseForOwnRight 而不是 baseForOwn

二是 while 循环的中止条件是 length-- ,索引从大到小,实现从后向前遍历。

baseEach 源码分析:《lodash源码分析之baseEach》

License

署名-非商业性使用-禁止演绎 4.0 国际 (CC BY-NC-ND 4.0)

最后,所有文章都会同步发送到微信公众号上,欢迎关注,欢迎提意见:

作者:对角另一面

results matching ""

    No results matching ""