mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
9 lines
292 B
TypeScript
9 lines
292 B
TypeScript
import type { U8aLike } from '../types.js';
|
|
/**
|
|
* @name isAscii
|
|
* @summary Tests if the input is printable ASCII
|
|
* @description
|
|
* Checks to see if the input string or Uint8Array is printable ASCII, 32-127 + formatters
|
|
*/
|
|
export declare function isAscii(value?: U8aLike | null): boolean;
|