mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-03 09:18:05 +09:00
fix lint no-fallthrough
This commit is contained in:
parent
2a8dbb43c0
commit
3514e0afdb
@ -116,8 +116,11 @@ function get() {
|
|||||||
let base = parseInt(after.value);
|
let base = parseInt(after.value);
|
||||||
switch (unit.value) {
|
switch (unit.value) {
|
||||||
case 'day': base *= 24;
|
case 'day': base *= 24;
|
||||||
|
// fallthrough
|
||||||
case 'hour': base *= 60;
|
case 'hour': base *= 60;
|
||||||
|
// fallthrough
|
||||||
case 'minute': base *= 60;
|
case 'minute': base *= 60;
|
||||||
|
// fallthrough
|
||||||
case 'second': return base *= 1000;
|
case 'second': return base *= 1000;
|
||||||
default: return null;
|
default: return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user