From bc65ef6213364e304b5ee1410c43bef0d023c56a Mon Sep 17 00:00:00 2001 From: Martin Cech Date: Tue, 11 Jul 2017 15:20:00 -0400 Subject: [PATCH] fix example indentation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a446bca..da41904 100644 --- a/README.md +++ b/README.md @@ -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); }