UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

7 lines (6 loc) 165 B
// `_isNull` : an object's function // --------------------------------- // Is a given value equal to null? export default function (obj) { return obj === null; };