@vendure/ngx-translate-extract
Version:
Extract strings from projects using ngx-translate
7 lines (6 loc) • 312 B
JavaScript
import { styleText } from 'node:util';
export const cyan = (text) => styleText('cyan', text);
export const green = (text) => styleText('green', text);
export const bold = (text) => styleText('bold', text);
export const dim = (text) => styleText('dim', text);
export const red = (text) => styleText('red', text);