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 fe10f0c commit 17a18a9Copy full SHA for 17a18a9
sqlite.js
@@ -14,7 +14,7 @@ function SQLite(cfg) {
14
case 'number':
15
return true;
16
case 'string':
17
- return /^\d+$/.test(val);
+ return (/^\d+$/).test(val);
18
case 'object':
19
return false;
20
}
0 commit comments