TreasureTrails/node_modules/fast-check/lib/arbitrary/clone.js

8 lines
264 B
JavaScript
Raw Normal View History

2026-03-18 09:02:21 -05:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.clone = clone;
const CloneArbitrary_1 = require("./_internals/CloneArbitrary");
function clone(arb, numValues) {
return new CloneArbitrary_1.CloneArbitrary(arb, numValues);
}