UNPKG

@scalar/oas-utils

Version:

Open API spec and Yaml handling utilities

9 lines (7 loc) 202 B
/** * Check if an entity should be ignored */ const shouldIgnoreEntity = (data) => { return data?.['x-internal'] === true || data?.['x-scalar-ignore'] === true; }; export { shouldIgnoreEntity };