fix lint no-fallthrough

This commit is contained in:
Johann150 2022-07-04 16:05:41 +02:00 committed by Chloe Kudryavtsev
parent debfd16fc7
commit 8902813633

View file

@ -116,8 +116,11 @@ function get() {
let base = parseInt(after.value);
switch (unit.value) {
case 'day': base *= 24;
// fallthrough
case 'hour': base *= 60;
// fallthrough
case 'minute': base *= 60;
// fallthrough
case 'second': return base *= 1000;
default: return null;
}