aureooms/js-array

View on GitHub
src/set.js

Summary

Maintainability
A
0 mins
Test Coverage
export function set(a, i, v) {
    a[i] = v;
}