This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/vendor/js-sys/tests/wasm/Array.js

7 lines
144 B
JavaScript

// Used for `Array.rs` tests
exports.populate_array = function(arr, start, len) {
for (i = 0; i < len; i++) {
arr[i] = start + i;
}
};