Really-amin's picture
Upload 1460 files
96af7c9 verified
raw
history blame
271 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.json = json;
const jsonValue_1 = require("./jsonValue");
function json(constraints = {}) {
const arb = (0, jsonValue_1.jsonValue)(constraints);
return arb.map(JSON.stringify);
}