Skip to content

Commit c8033dc

Browse files
committed
Prettier
1 parent bcdc7ca commit c8033dc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

bindings.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,11 @@ function bindings(opts) {
115115
}
116116
return b;
117117
} catch (e) {
118-
if (e.code !== 'MODULE_NOT_FOUND' &&
119-
e.code !== 'QUALIFIED_PATH_RESOLUTION_FAILED' &&
120-
!/not find/i.test(e.message)) {
118+
if (
119+
e.code !== 'MODULE_NOT_FOUND' &&
120+
e.code !== 'QUALIFIED_PATH_RESOLUTION_FAILED' &&
121+
!/not find/i.test(e.message)
122+
) {
121123
throw e;
122124
}
123125
}

0 commit comments

Comments
 (0)