margox / eventer.js

一个微型事件发布/订阅模块
MIT License
4 stars 3 forks source link

不使用new的时候会报错 #1

Closed wjj5728 closed 7 years ago

wjj5728 commented 7 years ago

if (!this instanceof Eventer) { console.log(1) return new Eventer(object); }

应该改成 if (!(this instanceof Eventer)) { console.log(1) return new Eventer(object); }

!this会将优先进行

不知道对不对,读源码的时候发现的。

margox commented 7 years ago

666 这个地方大意了,多谢指正