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