@polkadot/util
Version:
A collection of useful utilities for @polkadot
27 lines (24 loc) • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isNull = isNull;
// Copyright 2017-2022 @polkadot/util authors & contributors
// SPDX-License-Identifier: Apache-2.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;
}