Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.3 KB

baseForRight.md

File metadata and controls

39 lines (26 loc) · 1.3 KB

lodash源码分析之baseForRight

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

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

源码分析

baseForRightbaseFor 方法类似,不过是从后向前遍历,源码也大致一样。

源码如下:

function baseForRight(object, iteratee, keysFunc) {
  const iterable = Object(object)
  const props = keysFunc(object)
  let { length } = props

  while (length--) {
    const key = props[length]
    if (iteratee(iterable[key], key, iterable) === false) {
      break
    }
  }
  return object
}

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

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

License

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

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

作者:对角另一面