MuYu

Results 32 comments of MuYu

see this commit https://github.com/s-panferov/awesome-typescript-loader/commit/149ce3dc81ce0994e6efad643534a6f7d75a7cb3 Now this problem is solved.

@jawil ```javascript (23333333).toLocaleString('en-US') ```

@skyDancers 里面有随机的啊,怎么会生成迷宫

@jawil 并不能这么看,vue很多用户会使用国内的加速源

@HuoXiaoYe 这里是一个setter,赋值就是给value的,为什么要赋值给key呢? defineProperty第一个参数是一个对象,第二个参数是这个对象上的一个key,见 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty 。

安卓 5.0.2 微信 6.3.23,可以复现。 在首页点击一个链接后,页面链接会改变,但内容不会改变,但是可以点击举报然后再返回,此时页面内容会改变为点击后应显示页面。

@mzgoddard My colleague reproduces this bug. When building, use Ctrl-C to cancel, then build again, you will get this error.

我来贴个测试吧 ```javascript var suite = new Benchmark.Suite; suite.add('Intl', function() { new Intl.NumberFormat().format(123123); }) .add('toLocaleString', function() { (123123).toLocaleString('en-US') }) .add('replace', function() { String(123123).replace(/(^|\s)\d+/g, s => s.replace(/(?=(?!\b)(\d{3})+$)/g, ',')) }) .on('cycle', function(event) {...