Skip to content

Commit 1a63fe9

Browse files
jun-okaTrott
authored andcommitted
test: favor === over == in fs-utimes
1 parent 4e5cf85 commit 1a63fe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-fs-utimes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var tests_ok = 0;
88
var tests_run = 0;
99

1010
function stat_resource(resource) {
11-
if (typeof resource == 'string') {
11+
if (typeof resource === 'string') {
1212
return fs.statSync(resource);
1313
} else {
1414
// ensure mtime has been written to disk

0 commit comments

Comments
 (0)