You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -32,6 +33,38 @@ export class Double extends BSONValue {
32
33
this.value=+value;
33
34
}
34
35
36
+
/**
37
+
* Attempt to create an double type from string.
38
+
*
39
+
* This method will throw a BSONError on any string input that is not representable as a IEEE-754 64-bit double.
40
+
* Notably, this method will also throw on the following string formats:
41
+
* - Strings in non-decimal formats (exponent notation, binary, hex, or octal digits)
42
+
* - Strings with characters other than numeric, floating point, or leading sign characters (Note: 'Infinity', '-Infinity', and 'NaN' input strings are still allowed)
43
+
* - Strings with leading and/or trailing whitespace
44
+
*
45
+
* Strings with leading zeros, however, are also allowed
46
+
*
47
+
* @param value - the string we want to represent as an double.
0 commit comments