BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
lib
/
node_modules
/
pm2
/
node_modules
/
ansi-colors
π€ Upload
π New File
π New Folder
Close
Editing: symbols.js
'use strict'; const isHyper = typeof process !== 'undefined' && process.env.TERM_PROGRAM === 'Hyper'; const isWindows = typeof process !== 'undefined' && process.platform === 'win32'; const isLinux = typeof process !== 'undefined' && process.platform === 'linux'; const common = { ballotDisabled: 'β', ballotOff: 'β', ballotOn: 'β', bullet: 'β’', bulletWhite: 'β¦', fullBlock: 'β', heart: 'β€', identicalTo: 'β‘', line: 'β', mark: 'β»', middot: 'Β·', minus: 'οΌ', multiplication: 'Γ', obelus: 'Γ·', pencilDownRight: 'β', pencilRight: 'β', pencilUpRight: 'β', percent: '%', pilcrow2: 'β‘', pilcrow: 'ΒΆ', plusMinus: 'Β±', question: '?', section: 'Β§', starsOff: 'β', starsOn: 'β ', upDownArrow: 'β' }; const windows = Object.assign({}, common, { check: 'β', cross: 'Γ', ellipsisLarge: '...', ellipsis: '...', info: 'i', questionSmall: '?', pointer: '>', pointerSmall: 'Β»', radioOff: '( )', radioOn: '(*)', warning: 'βΌ' }); const other = Object.assign({}, common, { ballotCross: 'β', check: 'β', cross: 'β', ellipsisLarge: 'β―', ellipsis: 'β¦', info: 'βΉ', questionFull: 'οΌ', questionSmall: 'οΉ', pointer: isLinux ? 'βΈ' : 'β―', pointerSmall: isLinux ? 'β£' : 'βΊ', radioOff: 'β―', radioOn: 'β', warning: 'β ' }); module.exports = (isWindows && !isHyper) ? windows : other; Reflect.defineProperty(module.exports, 'common', { enumerable: false, value: common }); Reflect.defineProperty(module.exports, 'windows', { enumerable: false, value: windows }); Reflect.defineProperty(module.exports, 'other', { enumerable: false, value: other });
Save
Cancel