Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lodash源码分析之baseEach #133

Open
HeftyKoo opened this issue Mar 21, 2020 · 0 comments
Open

lodash源码分析之baseEach #133

HeftyKoo opened this issue Mar 21, 2020 · 0 comments
Labels
internal 内部函数或方法 系列文章

Comments

@HeftyKoo
Copy link
Owner

HeftyKoo commented Mar 21, 2020

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

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

依赖

import baseForOwn from './baseForOwn.js'
import isArrayLike from '../isArrayLike.js'

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

源码分析

baseEach 的作用类似于数组的 each 方法,但是 baseEach 遍历的是对象,并不是数组。

源码如下:

function baseEach(collection, iteratee) {
  if (collection == null) {
    return collection
  }
  if (!isArrayLike(collection)) {
    return baseForOwn(collection, iteratee)
  }
  const length = collection.length
  const iterable = Object(collection)
  let index = -1

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

处理空值

如果没有传 collection 或者传入 null ,则直接返回 collection,不做任何处理。

处理非类数组

如果传入的 collection 为非类数组则使用 baseForOwn 来遍历。

处理类数组

如果为类数组,思路是获取 collectionlength ,然后遍历索引即可。

注意一点,和数组的 each 不同的是,如果 iteratee 返回的结果为 false,则会中止遍历。

License

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

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

作者:对角另一面

@HeftyKoo HeftyKoo added 系列文章 internal 内部函数或方法 labels Mar 21, 2020
@HeftyKoo HeftyKoo changed the title lodash源码分析之baseReduce lodash源码分析之baseEach Mar 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
internal 内部函数或方法 系列文章
Projects
None yet
Development

No branches or pull requests

1 participant