/* * This file is part of the authRXBN single sign-on package. * * (c) Ruben Meyer */ module.exports = { 'command': 'clear', 'description': 'clear the output', 'action': (args, cb) => { process.stdout.write ("\u001B[2J\u001B[0;0f"); cb(); } };