Skip to content

Commit 2cf34d4

Browse files
refactor(util): bring back non resolved comment
1 parent 289de43 commit 2cf34d4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/mapper/util.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ export function detectType(value: any): AttributeType {
151151
if (isString(value)) {
152152
return 'S'
153153
} else if (isNumber(value)) {
154+
// TODO LOW: we should probably use _.isFinite --> otherwise Infinity & NaN are numbers as well
154155
return 'N'
155156
} else if (isBinary(value)) {
156157
return 'B'

0 commit comments

Comments
 (0)