function green
green(text: string): string

ANSI green text.

green('ok 1'); // '\x1b[32mok 1\x1b[39m' when color is enabled; 'ok 1' otherwise

Parameters

text: string

Return Type

string

Usage

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