Determine if a value is empty
Pass in a value and get a boolean telling you if the value is empty.
import * as _ from 'radashi' _.isEmpty([]) // => true_.isEmpty('') // => true _.isEmpty('hello') // => false_.isEmpty(['hello']) // => false