function blue
blue(text: string): string

ANSI blue text.

blue('# todo'); // '\x1b[34m# todo\x1b[39m' when color is enabled; '# todo' otherwise

Parameters

text: string

Return Type

string

Usage

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