mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 10:36:01 +00:00
typo + bigint converted to numbers
This commit is contained in:
@@ -21,7 +21,7 @@ function _normalizeValue(value) {
|
||||
}
|
||||
|
||||
if (typeof value === 'bigint') {
|
||||
return `${value}n`;
|
||||
return parseInt(value);
|
||||
}
|
||||
|
||||
if (Array.isArray(value)) {
|
||||
|
||||
Reference in New Issue
Block a user