mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-17 02:30:50 +00:00
Add extends to js-sys:Intl.NumberFormat
This commit is contained in:
parent
780c7236f1
commit
ee131888da
@ -3496,7 +3496,7 @@ pub mod Intl {
|
||||
/// that enable language sensitive number formatting.
|
||||
///
|
||||
/// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat
|
||||
#[wasm_bindgen(js_namespace = Intl)]
|
||||
#[wasm_bindgen(extends = Object, js_namespace = Intl)]
|
||||
#[derive(Clone, Debug)]
|
||||
pub type NumberFormat;
|
||||
|
||||
|
@ -72,6 +72,10 @@ fn number_format() {
|
||||
|
||||
let a = Intl::NumberFormat::supported_locales_of(&locales, &opts);
|
||||
assert!(a.is_instance_of::<Array>());
|
||||
|
||||
assert!(n.is_instance_of::<Intl::NumberFormat>());
|
||||
assert!(n.is_instance_of::<Object>());
|
||||
let _: &Object = n.as_ref();
|
||||
}
|
||||
|
||||
#[wasm_bindgen_test]
|
||||
|
Loading…
x
Reference in New Issue
Block a user