UNPKG

openapi-ts-json-schema

Version:

Generate TypeScript-first JSON schemas from OpenAPI definitions

11 lines (10 loc) 258 B
import _filenamify from 'filenamify'; /** * Replace "/" occurrences with "_" * and any other file path unsafe character with "!" */ export function filenamify(name) { return _filenamify(name.replaceAll('/', '_'), { replacement: '!', }); }