proposal: syscall/js: recognize JS bigint primitives in Value.Type #72050
Labels
LibraryProposal
Issues describing a requested change to the Go standard library or x/ libraries, but not to a tool
OS-JS
Proposal
Milestone
Proposal Details
Right now there's no TypeBigint for Value.Type() to return if the type is a bigint primitive (
typeof v
returns"bigint"
in js)I propose adding support for this new primitive, similar to the JS symbol primitive and how that is implemented in syscall/js right now -- it can be completely opaque to Go code.
The text was updated successfully, but these errors were encountered: