campus-errand/miniapp/node_modules/fast-check/lib/arbitrary/boolean.js
2026-03-01 05:01:47 +08:00

15 lines
426 B
JavaScript

import { integer } from './integer.js';
import { noBias } from './noBias.js';
function booleanMapper(v) {
return v === 1;
}
function booleanUnmapper(v) {
if (typeof v !== 'boolean')
throw new Error('Unsupported input type');
return v === true ? 1 : 0;
}
/**@__NO_SIDE_EFFECTS__*/function boolean() {
return noBias(integer({ min: 0, max: 1 }).map(booleanMapper, booleanUnmapper));
}
export { boolean };