UNPKG

@prelude/array

Version:

Array module.

5 lines 261 B
import at from './at.js'; /** Like `at` but bounds less than zero index to 0 and out of bound to last. */ const bounded = (values, index) => at(values, Math.min(values.length - 1, Math.max(0, index))); export default bounded; //# sourceMappingURL=bounded.js.map