UNPKG

@polkadot/util

Version:
29 lines (25 loc) 640 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isBuffer = isBuffer; var _has = require("../has"); // Copyright 2017-2022 @polkadot/util authors & contributors // SPDX-License-Identifier: Apache-2.0 /** * @name isBuffer * @summary Tests for a `Buffer` object instance. * @description * Checks to see if the input object is an instance of `Buffer`. * @example * <BR> * * ```javascript * import { isBuffer } from '@polkadot/util'; * * console.log('isBuffer', isBuffer(Buffer.from([]))); // => true * ``` */ function isBuffer(value) { return _has.hasBuffer && Buffer.isBuffer(value); }