util.isNullOrUndefined(object)


稳定性: 0 - 弃用: 改为使用 value === undefined || value === null

如果给定的 objectnullundefined,则返回 true。 否则,返回 false

const util = require('util');

util.isNullOrUndefined(0);
// 返回: false
util.isNullOrUndefined(undefined);
// 返回: true
util.isNullOrUndefined(null);
// 返回: true

Stability: 0 - Deprecated: Use value === undefined || value === null instead.

Returns true if the given object is null or undefined. Otherwise, returns false.

const util = require('util');

util.isNullOrUndefined(0);
// Returns: false
util.isNullOrUndefined(undefined);
// Returns: true
util.isNullOrUndefined(null);
// Returns: true