A-New-Day-001's picture
Upload 1591 files
be5030f
raw
history blame contribute delete
138 Bytes
'use strict';
module.exports = function (isSoft) {
process.stdout.write(
isSoft ? '\x1B[H\x1B[2J' : '\x1B[2J\x1B[3J\x1B[H\x1Bc'
);
}