fast-check
Version:
Property based testing framework for JavaScript (like QuickCheck)
9 lines (8 loc) • 380 B
TypeScript
import type { Arbitrary } from '../check/arbitrary/definition/Arbitrary.js';
/**
* For single ascii characters - char code between 0x00 (included) and 0x7f (included)
* @deprecated Please use ${@link string} with `fc.string({ unit: 'binary-ascii', minLength: 1, maxLength: 1 })` instead
* @remarks Since 0.0.1
* @public
*/
export declare function ascii(): Arbitrary<string>;