UNPKG

react-native-console-table

Version:

Display an array of objects (with the same interface) as a table in the terminal.

7 lines 371 B
/** * `Выделение текста в соответствии с заданным типом.` * @param text Текст для выделения. * @param type Тип выбраного выделения текста. * @returns Выделенный текст. */ export const selectText = (text: string, type: string) => `\x1b[${type}m${text}\x1b[0m`;