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