(input: unknown)
| 5 | import type { OpenAPICustomSecurityScheme, OpenAPIOperationData } from './types'; |
| 6 | |
| 7 | export function checkIsReference(input: unknown): input is OpenAPIV3.ReferenceObject { |
| 8 | return typeof input === 'object' && !!input && '$ref' in input; |
| 9 | } |
| 10 | |
| 11 | export function createStateKey(key: string, scope?: string) { |
| 12 | return scope ? `${scope}_${key}` : key; |
no outgoing calls
no test coverage detected