refactor(shared): trim helper constants

This commit is contained in:
Vincent Koc
2026-06-17 16:06:41 +08:00
parent 884a6a113c
commit c12d921291
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
/** Upper bound for config path array indexes to reject impractical sparse writes. */
export const MAX_CONFIG_PATH_ARRAY_INDEX = 100_000;
const MAX_CONFIG_PATH_ARRAY_INDEX = 100_000;
const CANONICAL_ARRAY_INDEX_SEGMENT = /^(0|[1-9]\d*)$/;