Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.15 KB

lte.md

File metadata and controls

31 lines (20 loc) · 1.15 KB

lodash源码分析之lte

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

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

源码分析

lte 用来比较传入的 value 值是否小于或等于传入的 other 值 。

源码如下:

function lte(value, other) {
  if (!(typeof value === 'string' && typeof other === 'string')) {
    value = +value
    other = +other
  }
  return value <= other
}

gt 的逻辑类似,如果 valueother 不同时为 string 转换成 number 类型比较,如果同时为 string,则使用 string 的比较方式比较。

License

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

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

作者:对角另一面