UNPKG

sober

Version:

Sober is a library of UI components designed with reference to Material You.

10 lines (9 loc) 260 B
export const convertCSSDuration = (value) => { const list = value.trim().match(/^([\d\.]+)(s|ms)$/); if (!list) throw new Error(); const number = Number(list[1]); if (list[2] === 's') return number * 1000; return number; };