Skip to content

Commit cbc8e4d

Browse files
fix lint
1 parent ec8905c commit cbc8e4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/filter/TargetingFilter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ async function stringToUint32(str: string): Promise<number> {
143143
// Fallback to native Node.js crypto module
144144
else {
145145
try {
146-
crypto = require('crypto');
146+
crypto = require("crypto");
147147
} catch (error) {
148-
console.error('Failed to load the crypto module:', error.message);
148+
console.error("Failed to load the crypto module:", error.message);
149149
throw error;
150150
}
151151
}

0 commit comments

Comments
 (0)