Skip to content

Commit 93a7074

Browse files
committed
Compare against undefined rather than null.
1 parent 57c1e23 commit 93a7074

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/jest-resolve/src/default_resolver.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function resolveSync(x: Path, options: ResolverOptions): Path {
124124
const memoIsFile: {[Path]: boolean} = {};
125125
function isFile(file: Path): boolean {
126126
let result = memoIsFile[file];
127-
if (result != null) return result;
127+
if (result !== undefined) return result;
128128

129129
try {
130130
const stat = fs.statSync(file);
@@ -140,7 +140,7 @@ function isFile(file: Path): boolean {
140140
const memoIsDirectory: {[Path]: boolean} = {};
141141
function isDirectory(dir: Path): boolean {
142142
let result = memoIsDirectory[dir];
143-
if (result != null) return result;
143+
if (result !== undefined) return result;
144144

145145
try {
146146
const stat = fs.statSync(dir);

0 commit comments

Comments
 (0)