(msg)
| 20 | const info = (msg) => console.log(`${colors.cyan}INFO: ${msg} ${colors.reset}`) |
| 21 | const success = (msg) => console.log(`${colors.green}SUCCESS: ${msg} ${colors.reset}`) |
| 22 | const warn = (msg) => console.warn(`${colors.yellow}WARNING: ${msg} ${colors.reset}`) |
| 23 | const error = (msg) => console.error(`${colors.red}ERROR: ${msg} ${colors.reset}`) |
| 24 | |
| 25 | function getBinaryInfo() { |