UNPKG

@polkadot/util

Version:
22 lines (21 loc) 452 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isNull = void 0; /** * @name isNull * @summary Tests for a `null` values. * @description * Checks to see if the input value is `null`. * @example * <BR> * * ```javascript * import { isNull } from '@polkadot/util'; * * console.log('isNull', isNull(null)); // => true * ``` */ function isNull(value) { return value === null; } exports.isNull = isNull;