1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { email } from "https://esm.town/v/std/email?v=9";
import { rimeUsage } from "https://esm.town/v/stevekrouse/rimeUsage";
export function rimeRateLimitExceeded(text: string) {
rimeUsage[new Date().toLocaleDateString()] =
(rimeUsage[new Date().toLocaleDateString()] || 0) +
text.length;
if (rimeUsage[new Date().toLocaleDateString()] > 1000) {
email({ subject: "Rime limit exceeded" });
return true;
}
else {
return false;
}
}
👆 This is a val. Vals are TypeScript snippets of code, written in the browser and run on our servers. Create scheduled functions, email yourself, and persist small pieces of data — all from the browser.