mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-13 04:03:07 +00:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
export function isPluginEventName(eventName: string): boolean {
|
|
if (!eventName) {
|
|
return false;
|
|
}
|
|
|
|
const eventSegments = eventName.split(':');
|
|
return (eventSegments.length > 1 && eventSegments[0].length > 0);
|
|
}
|