| Current Path : /usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/js-sys/tests/wasm/ |
| Current File : //usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/js-sys/tests/wasm/Array.js |
// Used for `Array.rs` tests
exports.populate_array = function(arr, start, len) {
var isBigInt = typeof(arr[0]) === "bigint";
for (i = 0; i < len; i++) {
arr[i] = isBigInt ? BigInt(start + i) : start + i;
}
};