File size: 351 Bytes
96af7c9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { buildCompareFunctionArbitrary } from './_internals/builders/CompareFunctionArbitraryBuilder.js';
const safeObjectAssign = Object.assign;
export function compareBooleanFunc() {
    return buildCompareFunctionArbitrary(safeObjectAssign((hA, hB) => hA < hB, {
        toString() {
            return '(hA, hB) => hA < hB';
        },
    }));
}