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 289de43 commit 2cf34d4Copy full SHA for 2cf34d4
src/mapper/util.ts
@@ -151,6 +151,7 @@ export function detectType(value: any): AttributeType {
151
if (isString(value)) {
152
return 'S'
153
} else if (isNumber(value)) {
154
+ // TODO LOW: we should probably use _.isFinite --> otherwise Infinity & NaN are numbers as well
155
return 'N'
156
} else if (isBinary(value)) {
157
return 'B'
0 commit comments