mirror of
https://github.com/tvytlx/ai-agent-deep-dive.git
synced 2026-04-05 08:34:47 +08:00
7 lines
136 B
JavaScript
7 lines
136 B
JavaScript
import { parseAnyDef } from "./any.js";
|
|
export function parseUndefinedDef(refs) {
|
|
return {
|
|
not: parseAnyDef(refs),
|
|
};
|
|
}
|