mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
module.exports = function() {
|
|
console.error.apply(console, arguments);
|
|
process.exit(1);
|
|
}
|
|
})();
|