EphAsad's picture
Upload 9972 files
01fdca8 verified
Raw
History Blame Contribute Delete
154 Bytes
export default function(range) {
var n = range.length;
return function(t) {
return range[Math.max(0, Math.min(n - 1, Math.floor(t * n)))];
};
}