mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 10:17:57 +00:00
8 lines
238 B
TypeScript
8 lines
238 B
TypeScript
/**
|
|
* @name isUtf8
|
|
* @summary Tests if the input is valid Utf8
|
|
* @description
|
|
* Checks to see if the input string or Uint8Array is valid Utf8
|
|
*/
|
|
export declare function isUtf8(value?: number[] | Uint8Array | string | null): boolean;
|