Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

12 lines
290 B
JavaScript

import { parseAnyDef } from "./any.js";
export function parseNeverDef(refs) {
return refs.target === "openAi"
? undefined
: {
not: parseAnyDef({
...refs,
currentPath: [...refs.currentPath, "not"],
}),
};
}