| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c857586 commit 4ef7f00
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -31,7 +31,7 @@ if (common.isAix) { | |||
| 31 | 31 | } | |
| 32 | 32 | ||
| 33 | 33 | function init(id, provider) { | |
| 34 | - keyList = keyList.filter((e) => e != pkeys[provider]); | ||
| 34 | + keyList = keyList.filter((e) => e !== pkeys[provider]); | ||
| 35 | 35 | } | |
| 36 | 36 | ||
| 37 | 37 | function noop() { } | |
@@ -114,6 +114,6 @@ process.on('exit', function() { | |||
| 114 | 114 | if (keyList.length !== 0) { | |
| 115 | 115 | process._rawDebug('Not all keys have been used:'); | |
| 116 | 116 | process._rawDebug(keyList); | |
| 117 | - assert.equal(keyList.length, 0); | ||
| 117 | + assert.strictEqual(keyList.length, 0); | ||
| 118 | 118 | } | |
| 119 | 119 | }); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments