fix example indentation

This commit is contained in:
Martin Cech 2017-07-11 15:20:00 -04:00 committed by GitHub
parent ce30459982
commit bc65ef6213

View File

@ -78,8 +78,8 @@ rl.on('line', (line) => {
// SAVE AS JSON
rl.on('close', () => {
try {
const json = JSON.stringify(output);
fs.writeFile('disposable_email_blacklist.json', json, () => console.log('--- FINISHED ---'));
const json = JSON.stringify(output);
fs.writeFile('disposable_email_blacklist.json', json, () => console.log('--- FINISHED ---'));
} catch (e) {
console.log(e);
}