Skip to content

Commit 5e5ae5a

Browse files
committed
double precision can be represented safely as number in js
1 parent d09d258 commit 5e5ae5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/types.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const types = module.exports.types = {
1010
},
1111
number: {
1212
to: 0,
13-
from: [21, 23, 26, 700],
13+
from: [21, 23, 26, 700, 701],
1414
serialize: x => '' + x,
1515
parse: x => +x
1616
},

0 commit comments

Comments
 (0)