mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-04-16 06:32:39 +00:00
5 lines
196 B
JavaScript
5 lines
196 B
JavaScript
/** Check if usage limit is reached (either window at 100%) */
|
|
export function isLimitReached(data) {
|
|
return data.fiveHour === 100 || data.sevenDay === 100;
|
|
}
|
|
//# sourceMappingURL=types.js.map
|