⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 9c819daf3aab3f8e7f6c34643f3bce298925d5633a0a4fd874f3daf5908a2dbc:


import isUndefined from './is-undefined'

/**
 * Check against the null and undefined values
 * @param   { * }  value -
 * @returns {Boolean} -
 */
export default function isNil(value) {
  return isUndefined(value) || value === null
}