UNPKG

289 BTypeScriptView Raw
1import type { U8aLike } from '../types';
2/**
3 * @name isAscii
4 * @summary Tests if the input is printable ASCII
5 * @description
6 * Checks to see if the input string or Uint8Array is printable ASCII, 32-127 + formatters
7 */
8export declare function isAscii(value?: U8aLike | null): boolean;