js-sys 0.3.56

Bindings for all JS global objects and functions in all JS environments like Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.
Documentation
1
2
3
4
5
6
// Used for `Array.rs` tests
exports.populate_array =  function(arr, start, len) {
  for (i = 0; i < len; i++) {
    arr[i] = start + i;
  }
};