We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8905c commit cbc8e4dCopy full SHA for cbc8e4d
src/filter/TargetingFilter.ts
@@ -143,9 +143,9 @@ async function stringToUint32(str: string): Promise<number> {
143
// Fallback to native Node.js crypto module
144
else {
145
try {
146
- crypto = require('crypto');
+ crypto = require("crypto");
147
} catch (error) {
148
- console.error('Failed to load the crypto module:', error.message);
+ console.error("Failed to load the crypto module:", error.message);
149
throw error;
150
}
151
0 commit comments