Files
RoggioApp/node_modules/fast-check/lib/arbitrary/clone.js
T
2026-04-26 19:42:42 +02:00

8 lines
264 B
JavaScript
Executable File

"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);
}