mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
23 lines
428 B
JavaScript
23 lines
428 B
JavaScript
|
|
const styles = {
|
|
bigint: '\xa76',
|
|
boolean: '\xa76',
|
|
date: '\xa75',
|
|
module: '\xa7n',
|
|
name: undefined,
|
|
null: '\xa7l',
|
|
number: '\xa76',
|
|
regexp: '\xa74',
|
|
special: '\xa73',
|
|
string: '\xa72',
|
|
symbol: '\xa72',
|
|
undefined: '\xa78'
|
|
}
|
|
|
|
function stylize (str, styleType) {
|
|
const style = styles[styleType]
|
|
if (style !== undefined) return `${style}${str}\xa7r`
|
|
return str
|
|
}
|
|
|
|
module.exports = { stylize, styles }
|