UNPKG

@redocly/openapi-core

Version:

See https://github.com/Redocly/redocly-cli

8 lines (6 loc) 153 B
import { isBrowser } from './env'; export const output = { write(str: string) { return isBrowser ? undefined : process.stdout.write(str); }, };