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源码分析之toKey #71

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

lodash源码分析之toKey #71

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

Comments

@HeftyKoo
Copy link
Owner

HeftyKoo commented Feb 8, 2020

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

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

依赖

import isSymbol from '../isSymbol.js'

《lodash源码分析之isSymbol》

源码分析

toKeylodash 的内部函数,作用是将一个值转换成符合符合对象的属性。这个和 js 的自动转换有一点不同,js 自动转换时,会将数字 -0 转换成字符串 "0",但是 toKey 会将数字 -0 转换成字符串 "-0"

源码如下:

const INFINITY = 1 / 0
function toKey(value) {
  if (typeof value === 'string' || isSymbol(value)) {
    return value
  }
  const result = `${value}`
  return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result
}

首先判断 value 是否为字符串或者 symbol 类型,如果为这两个类型,都是对象的属性值,直接返回。

如果不是这两种类型,需要将 value 转换成字符串。

在数字转换成字符串时, +0-0 都会被转换成 "0" ,因此,判断 result 如果为 "0" 时,再使用 1/value ,看得到的结果是不是 -INFINITY ,如果为负无穷,则 value 可以判断出来为 -0 ,直接返回 "-0" ,否则返回转换后的字符串 result

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