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源码分析之isIterateeCall #282

Open
HeftyKoo opened this issue May 16, 2020 · 0 comments
Open

lodash源码分析之isIterateeCall #282

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

Comments

@HeftyKoo
Copy link
Owner

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

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

依赖

import isArrayLike from '../isArrayLike.js'
import isIndex from './isIndex.js'
import isObject from '../isObject.js'
import eq from '../eq.js'

lodash源码分析之isArrayLike

lodash源码分析之isIndex

lodash源码分析之isObject

lodash源码分析之eq

源码分析

isIterateeCall 用来判断传入的 valueindexobject 参数是不是在迭代过程中得到的。

源码如下:

function isIterateeCall(value, index, object) {
  if (!isObject(object)) {
    return false
  }
  const type = typeof index
  if (type === 'number'
    ? (isArrayLike(object) && isIndex(index, object.length))
    : (type === 'string' && index in object)
  ) {
    return eq(object[index], value)
  }
  return false
}

如果 object 通不过 isObject 的检测,则这三个参数肯定不是在迭代过程中得到的。

接下来,判断 index 的类型,如果 index 为数字类型,则迭代的可能是数组,因此接着判断 object 能否通过 isArrayLike 的检测,如果能通过,再看 index 能否通过 isIndex 的检测,即 index 是否为正常的数组索引。

如果 indexobject 的检测都通过了,再判断数组在 index 索引上的值是否和 value 相等,这些检测都通过后,则参数是迭代中产生的。

如果 typestring 类型,则 index 必须要为 object 的属性,这个条件满足后,和数组一样,也要判断该属性上的值是否和 value 相等。

License

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

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

作者:对角另一面

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