File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ untyped values.
11
11
12
12
## Reading Properties with ` js_sys::Reflect::get `
13
13
14
- [ API documentation for ` js_sys::Reflect::get ` .] ( https://rustwasm.github.io/wasm-bindgen/api /js_sys/struct. Reflect.html#method. get )
14
+ [ API documentation for ` js_sys::Reflect::get ` .] ( https://docs.rs/js-sys/0.3.39 /js_sys/Reflect/fn. get.html )
15
15
16
16
A function that returns the value of a property.
17
17
@@ -29,7 +29,7 @@ let value = target[property_key];
29
29
30
30
## Writing Properties with ` js_sys::Reflect::set `
31
31
32
- [ API documentation for ` js_sys::Reflect::set ` .] ( https://rustwasm.github.io/wasm-bindgen/api /js_sys/struct. Reflect.html#method. set )
32
+ [ API documentation for ` js_sys::Reflect::set ` .] ( https://docs.rs/js-sys/0.3.39 /js_sys/Reflect/fn. set.html )
33
33
34
34
A function that assigns a value to a property. Returns a boolean that is true if
35
35
the update was successful.
@@ -48,7 +48,7 @@ target[property_key] = value;
48
48
49
49
## Determining if a Property Exists with ` js_sys::Reflect::has `
50
50
51
- [ API documentation for ` js_sys::Reflect::has ` .] ( https://rustwasm.github.io/wasm-bindgen/api /js_sys/struct. Reflect.html#method. has )
51
+ [ API documentation for ` js_sys::Reflect::has ` .] ( https://docs.rs/js-sys/0.3.39 /js_sys/Reflect/fn. has.html )
52
52
53
53
The JavaScript ` in ` operator as function. Returns a boolean indicating whether
54
54
an own or inherited property exists on the target.
You can’t perform that action at this time.
0 commit comments