Entry에서 이벤트관리를 보다 쉽게 사용하기 위해 만든 패키지
$ yarn add @entrylabs/event
import Event from '@entrylabs/event';
const target = new Event(document);
target.on('click', e => {console.log(e.type)});
target.trigger('click');
target.off('click');
MIT © [email protected]