harley

Results 1 comments of harley

```javascript function LazyMan(name) { if (this instanceof LazyMan) { this.task = []; this.log('Hi I am '+ name); setTimeout(() => { this.next(); }, 0); } return (this instanceof LazyMan) && this...