chore(core): clean up addEventListener() and removeEventListener() in ViewCommon

This commit is contained in:
shirakaba
2024-05-01 16:31:34 +09:00
parent dab9898030
commit 02e4d812c2
2 changed files with 42 additions and 48 deletions

View File

@@ -89,7 +89,7 @@ const _globalEventHandlers: {
};
} = {};
const eventNamesRegex = /\s*,\s*/;
export const eventNamesRegex = /\s*,\s*/;
/**
* Observable is used when you want to be notified when a change occurs. Use on/off methods to add/remove listener.