Skip to content

Minimal support for bigints? #1278

@Fil

Description

@Fil

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 requestquestionFurther information is needed

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions