UNPKG

@redocly/respect-core

Version:
12 lines 449 B
import { green, red } from 'colorette'; export const EXPECTED_COLOR = green; export const RECEIVED_COLOR = red; export const EXPECTED_LABEL = 'Expected'; export const RECEIVED_LABEL = 'Received'; export function printReceived(received) { return RECEIVED_COLOR(JSON.stringify(received, null, 2)); } export function printExpected(expected) { return EXPECTED_COLOR(JSON.stringify(expected, null, 2)); } //# sourceMappingURL=print-message.js.map