who-unfollowed-me
Version:
A CLI that let's you know who recently unfollowed you on GitHub.
37 lines (35 loc) • 901 B
JavaScript
const pwd = process.cwd();
const table = require('./table');
const chalk = require('chalk');
const symbols = require('log-symbols');
const unfollow = require('./unfollow');
try {
const followerList = require(`${pwd}/follower`);
module.exports = followers => {
if (followerList.length !== 0) {
const list = unfollow(followers);
if (list.length !== 0) {
console.log(
symbols.warning,
chalk.hex('#FF0000').inverse(' WARNING '),
'Following folk/s have unfollowed you recently.'
);
table(list);
} else {
console.log(
symbols.info,
chalk.bold.hex('#5E3AFF').inverse(' INFO '),
'Yeay! No one has unfollowed you recently.'
);
}
}
};
} catch (error) {
module.exports = followers => {
console.log(
symbols.success,
chalk.hex('#DF661E').inverse(' INFO '),
'Your username & followers list has been saved for later use.'
);
};
}