function yellow
yellow(text: string): string

ANSI yellow text.

yellow('# skip'); // '\x1b[33m# skip\x1b[39m' when color is enabled; '# skip' otherwise

Parameters

text: string

Return Type

string

Usage

import { yellow } from "lib/utils/color.ts";