[READ-ONLY] Mirror of https://github.com/sxzz/obug. A lightweight JavaScript debugging utility, forked from debug, featuring TypeScript and ESM support.
Something went wrong. Try again.
12345678910111213141516171819202122import { createDebug as createBrowserDebug, disable, enable, enabled, namespaces,} from './browser.ts'import type { Debugger, DebugOptions } from './types.ts'
export function createDebug( namespace: string, options?: DebugOptions,): Debugger { return createBrowserDebug( namespace, Object.assign({}, options, { useColors: false }), )}
export type * from './types.ts'export { disable, enable, enabled, namespaces }