@tetcoin/util
Version:
A collection of useful utilities for @tetcoin
28 lines (25 loc) • 638 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isBoolean;
// Copyright 2017-2019 @polkadot/util authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
/**
* @name isBoolean
* @summary Tests for a boolean value.
* @description
* Checks to see if the input value is a JavaScript boolean.
* @example
* <BR>
*
* ```javascript
* import { isBoolean } from '@tetcoin/util';
*
* isBoolean(false); // => true
* ```
*/
function isBoolean(value) {
return typeof value === 'boolean';
}