| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,7 +7,7 @@ const filepath = path.join(common.fixturesDir, 'x.txt'); | |||
| 7 | 7 | const fd = fs.openSync(filepath, 'r'); | |
| 8 | 8 | const expected = ''; | |
| 9 | 9 | ||
| 10 | - fs.read(fd, 0, 0, 'utf-8', common.mustCall(function(err, str, bytesRead) { | ||
| 10 | + fs.read(fd, 0, 0, 'utf-8', common.mustCall((err, str, bytesRead) => { | ||
| 11 | 11 | assert.ok(!err); | |
| 12 | 12 | assert.strictEqual(str, expected); | |
| 13 | 13 | assert.strictEqual(bytesRead, 0); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments