| 27 | export const getSecurity = (obj: OpenApi3Spec | OA3Operation | null) => obj?.security || []; |
| 28 | |
| 29 | interface SlugifyOptions { |
| 30 | replacement?: string; |
| 31 | lower?: boolean; |
| 32 | } |
| 33 | |
| 34 | export function getName( |
| 35 | api: OpenApi3Spec, |
nothing calls this directly
no outgoing calls
no test coverage detected