UNPKG

237 BJavaScriptView Raw
1'use strict';
2
3// local modules
4
5const auth = require('../lib/auth');
6
7// this module
8
9module.exports = function (input, flags, options) {
10 auth.logout()
11 .catch((err) => {
12 console.error(err);
13 process.exit(1);
14 });
15};