aureooms/js-radix-sort

View on GitHub
src/array/core/alloc.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// TODO check that this is the type that makes sense to hold counts
const alloc = (n) => new Int32Array(n);
export default alloc;