Skip to content

Commit d7e0e12

Browse files
committed
fix linting
1 parent 58a9ebb commit d7e0e12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev-packages/node-integration-tests/suites/public-api/LocalVariables/deny-inspector.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import * as Sentry from '@sentry/node';
22
import Hook from 'import-in-the-middle';
33

44
Hook((_, name) => {
5-
if(name === 'inspector') {
5+
if (name === 'inspector') {
66
throw new Error('No inspector!');
77
}
8-
if(name === 'node:inspector') {
8+
if (name === 'node:inspector') {
99
throw new Error('No inspector!');
1010
}
1111
});

0 commit comments

Comments
 (0)