14 lines
347 B
Java
14 lines
347 B
Java
/**
|
|
* @ignore
|
|
* get view event name, with name:event
|
|
* @param type original event type
|
|
* @param name event trigger shape name
|
|
* @returns the name:event string
|
|
*/
|
|
export function getEventName(type, name) {
|
|
if (type.includes(':')) {
|
|
return type;
|
|
}
|
|
return name ? name + ":" + type : type;
|
|
}
|
|
//# sourceMappingURL=event.js.map |