UNPKG

@redocly/openapi-core

Version:

See https://github.com/Redocly/redocly-cli

7 lines 176 B
export function pushStack(head, value) { return { prev: head, value }; } export function popStack(head) { return head?.prev ?? null; } //# sourceMappingURL=stack.js.map