mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
'use strict';
|
|
|
|
/* Clear terminal output */
|
|
const clearConsole = function () {
|
|
process.stdout.write(process.platform !== 'win32' ? '\x1B[2J\x1B[3J\x1B[H' : '\x1Bc');
|
|
};
|
|
|
|
module.exports = clearConsole;
|