Files
claude-hud/dist/types.js

5 lines
196 B
JavaScript
Raw Normal View History

2026-01-07 05:00:50 +00:00
/** Check if usage limit is reached (either window at 100%) */
export function isLimitReached(data) {
return data.fiveHour === 100 || data.sevenDay === 100;
}
2026-01-05 04:06:24 +00:00
//# sourceMappingURL=types.js.map