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源码分析之someValues #373

Open
HeftyKoo opened this issue Jun 8, 2020 · 0 comments
Open

lodash源码分析之someValues #373

HeftyKoo opened this issue Jun 8, 2020 · 0 comments
Labels
api 暴露出来的接口 系列文章

Comments

@HeftyKoo
Copy link
Owner

HeftyKoo commented Jun 8, 2020

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

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

源码分析

someValuessome 的作用类似,不过 some 遍历的是数组, someValues 针对的是对象。

someValues 接收一个对象 object 和一个断言函数 predicate ,如果对象中只要有一个值能通过 predicate 的检测,则得到结果 true ,如果所有的值都通不过 predicate 检测,则得到 false

源码如下:

function someValues(object, predicate) {
  object = Object(object)
  const props = Object.keys(object)

  for (const key of props) {
    if (predicate(object[key], key, object)) {
      return true
    }
  }
  return false
}

先使用 Object 将传入的 object 进行转换,避免传入非 object 的情况。

使用 Object.keys 获取 object 上所有可枚举属性。

接着遍历属性,在遍历的过程中调用 predicate 函数,将值 object[key] 、对应的属性 keyobject 传入,如果 predicate 返回的是真值,则中止遍历,得到结果 true

如果遍历完毕,predicate 得到的都是假值,则得到结果 false

License

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

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

作者:对角另一面

@HeftyKoo HeftyKoo added 系列文章 api 暴露出来的接口 labels Jun 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api 暴露出来的接口 系列文章
Projects
None yet
Development

No branches or pull requests

1 participant