Files
2025-09-15 18:10:26 +03:00

16 lines
519 B
JavaScript

import { safeHasOwnProperty } from '../utils/globals.js';
let contextRemainingDepth = 10;
export 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];
});
}