UNPKG

is-nil

Version:

Checks if the given value is null or undefined

7 lines (4 loc) 75 B
'use strict'; module.exports = function (obj) { return obj == null; };