@tetcoin/util
Version:
A collection of useful utilities for @tetcoin
32 lines (27 loc) • 840 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isU8a;
var _instanceOf = _interopRequireDefault(require("./instanceOf"));
// 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 isU8a
* @summary Tests for a `Uint8Array` object instance.
* @description
* Checks to see if the input object is an instance of `Uint8Array`.
* @example
* <BR>
*
* ```javascript
* import { isUint8Array } from '@tetcoin/util';
*
* console.log('isU8a', isU8a([])); // => false
* ```
*/
function isU8a(value) {
return (0, _instanceOf.default)(value, Uint8Array);
}