Skip to content

Commit

Permalink
Update browser support for BigInt (#1728)
Browse files Browse the repository at this point in the history
* Update browser support for `BigInt`

`BigInt` is supported in Firefox as of Firefox 68!
Also replaced Firefox with Safari as a second example of an unsupported browser.

* Add link to "BigInt" on "Can I use..."
  • Loading branch information
nasso authored and alexcrichton committed Aug 21, 2019
1 parent 5c56c02 commit e39e850
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions guide/src/reference/browser-support.md
Expand Up @@ -58,9 +58,10 @@ also like to be aware of it!
forbids the usage of 64-bit integers (Rust types `i64` and `u64`) in
exported/imported functions. When using `wasm-bindgen`, however, `u64` is
allowed! The reason for this is that it's translated to the `BigInt` type in
JS. The `BigInt` class, however, is only currently supported in Chrome (as of
the time of this writing) and isn't supported in Firefox or Edge, for
example.
JS. The `BigInt` class, however, is only currently supported in Chrome 67+ and
Firefox 68+ (as of the time of this writing) and isn't supported in Edge or
Safari, for example. For more, up-to-date details, see [`BigInt` on Can I
use...][ciu_bigint].

If you find other incompatibilities please report them to us! We'd love to
either keep this list up-to-date or fix the underlying bugs :)
Expand All @@ -71,3 +72,4 @@ either keep this list up-to-date or fix the underlying bugs :)
[`text-encoding`]: https://www.npmjs.com/package/text-encoding
[soq]: https://stackoverflow.com/questions/40662142/polyfill-for-textdecoder/46549188#46549188
[mdntepi]: https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder#Polyfill
[ciu_bigint]: https://caniuse.com/#feat=bigint

0 comments on commit e39e850

Please sign in to comment.