mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 05:30:40 +00:00
4 lines
128 B
TypeScript
4 lines
128 B
TypeScript
export const isValidIdentifier = (name: string) => {
|
|
return /^[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*$/.test(name);
|
|
};
|