aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js
index 2b183ea1..a2d3244e 100644
--- a/src/library.js
+++ b/src/library.js
@@ -1745,7 +1745,7 @@ LibraryManager.library = {
type == 'F' || type == 'E' || type == 'G') {
var last = 0;
next = get();
- while ( next > 0 && (!(next in __scanString.whiteSpace)) ) {
+ while (next > 0 && (!(next in __scanString.whiteSpace))) {
buffer.push(String.fromCharCode(next));
if (__isFloat(buffer.join(''))) {
last = buffer.length;