es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
19 lines (18 loc) • 427 B
JavaScript
import { wrapAnsi } from "./_internal/wrapAnsi.mjs";
//#region src/server/colors/underline.ts
/**
* Underlined text. Wraps text with ANSI codes.
*
* @param text - The text to style.
* @returns The styled text.
*
* @example
* import { colors } from 'es-toolkit/server';
*
* console.log(colors.underline('hello'));
*/
function underline(text) {
return wrapAnsi("\x1B[4m", "\x1B[24m", text);
}
//#endregion
export { underline };