Skip to content

isUndefined

Determine if a value is undefined

60 bytes

Usage

Pass in a value and get a boolean telling you if the value is undefined.

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