time.mjs 130 B

12345
  1. function convertOffsetToTimes(offset, duration) {
  2. return offset.map((o) => o * duration);
  3. }
  4. export { convertOffsetToTimes };