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

13 lines
545 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.compareBooleanFunc = compareBooleanFunc;
const CompareFunctionArbitraryBuilder_js_1 = require("./_internals/builders/CompareFunctionArbitraryBuilder.js");
const safeObjectAssign = Object.assign;
/**@__NO_SIDE_EFFECTS__*/function compareBooleanFunc() {
return (0, CompareFunctionArbitraryBuilder_js_1.buildCompareFunctionArbitrary)(safeObjectAssign((hA, hB) => hA < hB, {
toString() {
return '(hA, hB) => hA < hB';
},
}));
}