mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-24 21:47:57 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
import type { BufferObject } from '../types.js';
|
||||
/**
|
||||
* @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 '@pezkuwi/util';
|
||||
*
|
||||
* console.log('isBuffer', isBuffer(Buffer.from([]))); // => true
|
||||
* ```
|
||||
*/
|
||||
export declare function isBuffer<T = BufferObject>(value: unknown): value is T;
|
||||
Reference in New Issue
Block a user