fast-check
Version:
Property based testing framework for JavaScript (like QuickCheck)
16 lines (15 loc) • 544 B
JavaScript
import { safeHasOwnProperty } from '../utils/globals.js';
let contextRemainingDepth = 10;
export /**@__NO_SIDE_EFFECTS__*/function memo(builder) {
const previous = {};
return ((maxDepth) => {
const n = maxDepth !== undefined ? maxDepth : contextRemainingDepth;
if (!safeHasOwnProperty(previous, n)) {
const prev = contextRemainingDepth;
contextRemainingDepth = n - 1;
previous[n] = builder(n);
contextRemainingDepth = prev;
}
return previous[n];
});
}