Update year

This commit is contained in:
Owen
2026-04-15 14:41:03 -07:00
parent c1f65c802c
commit aa95e5bb86
161 changed files with 250 additions and 224 deletions

View File

@@ -1,3 +1,5 @@
// Sanitizes
/**
* Sanitize a string field before inserting into a database TEXT column.
*
@@ -37,4 +39,4 @@ export function sanitizeString(
// Strip null bytes, C0 control chars (except HT/LF/CR), and DEL.
.replace(/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g, "")
);
}
}