We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 源码的第一百三十二篇,后续文章会更新到这个仓库中,欢迎 star:pocket-lodash
gitbook也会同步仓库的更新,gitbook地址:pocket-lodash
import baseForOwn from './baseForOwn.js' import isArrayLike from '../isArrayLike.js'
《lodash源码分析之baseForOwn》 《lodash源码分析之isArrayLike》
baseEach 的作用类似于数组的 each 方法,但是 baseEach 遍历的是对象,并不是数组。
baseEach
each
源码如下:
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
null
如果传入的 collection 为非类数组则使用 baseForOwn 来遍历。
baseForOwn
如果为类数组,思路是获取 collection 的 length ,然后遍历索引即可。
length
注意一点,和数组的 each 不同的是,如果 iteratee 返回的结果为 false,则会中止遍历。
iteratee
false
署名-非商业性使用-禁止演绎 4.0 国际 (CC BY-NC-ND 4.0)
最后,所有文章都会同步发送到微信公众号上,欢迎关注,欢迎提意见:
作者:对角另一面
The text was updated successfully, but these errors were encountered:
No branches or pull requests
本文为读 lodash 源码的第一百三十二篇,后续文章会更新到这个仓库中,欢迎 star:pocket-lodash
gitbook也会同步仓库的更新,gitbook地址:pocket-lodash
依赖
《lodash源码分析之baseForOwn》
《lodash源码分析之isArrayLike》
源码分析
baseEach
的作用类似于数组的each
方法,但是baseEach
遍历的是对象,并不是数组。源码如下:
处理空值
如果没有传
collection
或者传入null
,则直接返回collection
,不做任何处理。处理非类数组
如果传入的
collection
为非类数组则使用baseForOwn
来遍历。处理类数组
如果为类数组,思路是获取
collection
的length
,然后遍历索引即可。注意一点,和数组的
each
不同的是,如果iteratee
返回的结果为false
,则会中止遍历。License
署名-非商业性使用-禁止演绎 4.0 国际 (CC BY-NC-ND 4.0)
最后,所有文章都会同步发送到微信公众号上,欢迎关注,欢迎提意见:
作者:对角另一面
The text was updated successfully, but these errors were encountered: