From f66e80b5e9d22fcfdea2ae5a833d1e9ef84f8e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionic=C4=83=20Biz=C4=83u?= Date: Thu, 9 Jun 2016 15:23:33 +0300 Subject: [PATCH 1/2] Remove trailing slash in cli.js --- cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.js b/cli.js index 642366ae3..63d74899b 100755 --- a/cli.js +++ b/cli.js @@ -1,3 +1,3 @@ #!/usr/bin/env node -process.stdout.write(require('./').join('\n')) +process.stdout.write(require('.').join('\n')) From ec1bbab4d02f496821db5d72cb3e06069d2621de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionic=C4=83=20Biz=C4=83u?= Date: Thu, 9 Jun 2016 15:24:22 +0300 Subject: [PATCH 2/2] Remove the trailing slash --- example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.js b/example.js index 15f62a33b..e4787ad63 100644 --- a/example.js +++ b/example.js @@ -1,4 +1,4 @@ -const names = require('./') +const names = require('.') names.indexOf('superagent') > -1 // => true