mirror of
https://github.com/HeyPuter/puter.git
synced 2026-01-25 06:28:59 -06:00
chore: Adjust comment for eslint
This was confusing its fallthrough detection: /puter/packages/phoenix/src/puter-shell/coreutils/date.js 132:21 error Expected a 'break' statement before 'case' no-fallthrough
This commit is contained in:
@@ -126,9 +126,9 @@ export default {
|
||||
break;
|
||||
}
|
||||
|
||||
// "Locale's abbreviated month name."
|
||||
// b: "Locale's abbreviated month name."
|
||||
// h: "A synonym for %b."
|
||||
case 'b':
|
||||
// "A synonym for %b."
|
||||
case 'h': {
|
||||
output += date.toLocaleDateString(locale, { timeZone: timeZone, month: 'short' });
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user