1 2 3 4 5 6
export function timeInSeconds(n){ return (n / 10).toFixed(1) + ' s.' } export function gerund(s){ return s.replace(/e?$/, 'ing') }