MCPcopy Create free account
hub / github.com/Superflows-AI/superflows / isAlphaNumericUnderscore

Function isAlphaNumericUnderscore

lib/utils.ts:84–87  ·  view source on GitHub ↗
(str: string)

Source from the content-addressed store, hash-verified

82}
83
84export function isAlphaNumericUnderscore(str: string): boolean {
85 let pattern = /^[a-z0-9_]+$/i;
86 return pattern.test(str);
87}
88
89export function isJsonString(str: string) {
90 try {

Callers 1

EditActionModalFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected