dengbupapapa

Results 4 comments of dengbupapapa

``` function add(...args) { if (Number.prototype.add !== add) Number.prototype.add = add; return args.reduce( (pre, now) => pre + now, this instanceof Number ? this : 0 ); } ``` 修改Number满足吗

> Hi @dengbupapapa , this packages is yet to be released on npm. > > What is not working properly? can you provide more context with reporducible repo? Here's my...