UNPKG

clear-screen

Version:
10 lines (8 loc) 165 B
module.exports = function clear() { var stdout = process.stdout if (!stdout.isTTY) return; stdout.write('\x1bc') } if (require.main === module) { clear() }