File size: 138 Bytes
be5030f
 
 
 
 
 
 
1
2
3
4
5
6
7
8
'use strict';

module.exports = function (isSoft) {
	process.stdout.write(
		isSoft ? '\x1B[H\x1B[2J' : '\x1B[2J\x1B[3J\x1B[H\x1Bc'
	);
}