isUndefined 60 bytes
Determine if a value is undefined
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