bot18
Version:
A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f
19 lines (15 loc) • 483 B
JavaScript
var os = require("os")
var child_process = require("child_process")
var hasUnicode = module.exports = function () {
// Supported Win32 platforms (>XP) support unicode in the console, though
// font support isn't fantastic.
if (os.type() == "Windows_NT") { return 'cp437'; }
var isUTF8 = /[.]UTF-8/
if (isUTF8.test(process.env.LC_ALL)
|| process.env.LC_CTYPE == 'UTF-8'
|| isUTF8.test(process.env.LANG)) {
return 'unicode';
}
return 'ascii';
}