Updates
This commit is contained in:
@@ -25,7 +25,7 @@ function sqlInsertGenerator({ tableName, data, dbFullName, }) {
|
||||
const value = item[ky];
|
||||
const finalValue = typeof value == "string" ||
|
||||
typeof value == "number"
|
||||
? String(value)
|
||||
? value
|
||||
: value
|
||||
? String(value().value)
|
||||
: null;
|
||||
|
||||
Vendored
+1
-1
@@ -2490,7 +2490,7 @@ export interface GithubUserPayload {
|
||||
}
|
||||
export interface SQLInsertGenReturn {
|
||||
query: string;
|
||||
values: string[];
|
||||
values: (string | number)[];
|
||||
}
|
||||
export type SQLInsertGenDataFn = () => {
|
||||
placeholder: string;
|
||||
|
||||
Reference in New Issue
Block a user