2025-09-05 14:59:21 +08:00

5 lines
176 B
JavaScript

//#region src/data-loaders/createDataLoader.ts
const toLazyValue = (lazy, to, from) => typeof lazy === "function" ? lazy(to, from) : lazy;
//#endregion
export { toLazyValue };