@scalar/oas-utils
Version:
Open API spec and Yaml handling utilities
16 lines (15 loc) • 409 B
JavaScript
const getServerVariableExamples = (server) => {
const examples = {};
if (server.variables) {
for (const [key, variable] of Object.entries(server.variables)) {
examples[key] = variable.enum?.filter((v) => typeof v === "string") ?? [
variable.default
];
}
}
return examples;
};
export {
getServerVariableExamples
};
//# sourceMappingURL=get-server-variable-examples.js.map