isUndefined

Lang
since 0.1.0

Arguments

  • * The value to check.

Returns

boolean `true` if `value` is `undefined`, else `false`.

Checks if value is undefined.

Example of Lodash _.isUndefined

_.isUndefined(void 0);
// => true

_.isUndefined(null);
// => false