mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
https://github.com/trekhleb/javascript-algorithms?tab=readme-ov-file super cool repo! This algorithm will just run on the client, if it isn't my server will blow up :( Maybe I will just make a postgres db that sends the users processing info to save other users processing power?
6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
async function checkUnsafeContent() {
|
|
const req = await fetch("/api/contentcheck/kidunfriendlycontent");
|
|
const res = await req.json();
|
|
}
|
|
|
|
export default checkUnsafeContent;
|