@tetcoin/util
Version:
A collection of useful utilities for @tetcoin
33 lines (28 loc) • 817 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isBn;
var _bn = _interopRequireDefault(require("bn.js"));
// 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 isBn
* @summary Tests for a `BN` object instance.
* @description
* Checks to see if the input object is an instance of `BN` (bn.js).
* @example
* <BR>
*
* ```javascript
* import BN from 'bn.js';
* import { isBn } from '@tetcoin/util';
*
* console.log('isBn', isBn(new BN(1))); // => true
* ```
*/
function isBn(value) {
return _bn.default.isBN(value);
}