Chunpeng Huo

Results 313 comments of Chunpeng Huo

Better to bring back latest v3 right now, apply security patch to v3 later...

BTW, some examples in this repo's README is **wrong**. ```js observe(() => console.log(person), { scheduler: ... }); ``` That log only observes `person` itself, not nested properties. Should be: ```js...

Maybe we should use term `rename` not `alias` on this feature? In order to avoid confusion with the `alias` feature on customElement.

Should we check in importAs first? We can design the wrapper and implement conventions later.

Yes, expression in html supposes to be simple and readable. Putting function there looks weird. Beside RegExp, there is also widely used glob pattern format, which is easier to support....

I questioned loose mode before in #866 but didn't have any interesting code that broke with loose mode. Alternatively `this.foo = Array.from(new Set([1,2,3]));` (still compact and readable) can avoid the...

I can reproduce this problem with requirejs and systemjs. It seems has something to do with the Buffer object. I haven't figured out what exactly happened. It looks like the...

Update: please ignore my suggestion on dumber. You can make it work with current Aurelia-CLI, I just found out qrcode shipped with a precompiled umd build. Use explicit dep config...

Now I understand why it broke. qrcode has an inner implementation of `Buffer` in `qrcode/lib/typedarry-buffer.js` (for browser only), but one of its depenendecies, `core-util-is` uses `Buffer` as NodeJs global var....