UNPKG

unist-util-assert

Version:
10 lines (8 loc) 185 B
import {inspect as utilInspect} from 'node:util' /** * @param {unknown} value * @returns {string} */ export function inspect(value) { return utilInspect(value, {colors: false}) }