Skip to content

isUndefined

判断值是否为 undefined

60 bytes
since v12.3.0

使用方法

传入一个值,将返回布尔值表示该值是否为 undefined。

import * as _ from 'radashi'
_.isUndefined(undefined) // => true
_.isUndefined(null) // => false