-
Notifications
You must be signed in to change notification settings - Fork 194
Closed
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is neededFurther information is needed
Description
Can we just change this:
function coerceNumber(x) {
- return x == null ? NaN : +x;
+ return x == null ? NaN : Number(x);
}
(doing so does not break a single test, but there might be implications I haven't seen?)
Ref. #1099; the use case is to facilitate passing database results to Plot.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is neededFurther information is needed