This repository has been archived on 2026-08-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pi-web/src/shared/pluginIds.ts
T

6 lines
163 B
TypeScript

export const piWebPluginIdPattern = /^[a-z][a-z0-9.-]*$/u;
export function isPiWebPluginId(value: string): boolean {
return piWebPluginIdPattern.test(value);
}