Hefty

Results 17 comments of Hefty

![image](https://cloud.githubusercontent.com/assets/10278227/21412945/f18925f8-c82e-11e6-8996-892bfea262d9.png) concat 和slice对对象数组没有效果的?

@flynntsc 嗯嗯,谢谢

@breezefeng 根据作者的提示,我写了一个[vue-lazy-render](https://github.com/yeyuqiudeng/vue-lazy-render)

@Coffcer 你好,我最近也遇到了渲染慢的问题,请问一下2.0的组件实现思路大概是怎样的呢?谢谢

嗯嗯,谢谢,已经做好了

> 为什么第一个if不直接return 0而要判断一次再返回呢 我猜是处理正负0的问题,如果是 `-0`,按原样返回 `-0`

> 截至目前源码: > function assignValue(object, key, value) { > var objValue = object[key]; > if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || > (value === undefined && !(key in object))) {...

> 源码分析后的第一个memoize拼写错误,目前为mamoize 😬 谢谢指正

> `... case arrayBufferTag: if ((object.byteLength != other.byteLength) || !equalFunc(**new Uint8Array(object), new Uint8Array(other)**)) { return false } return true ...` > 请问一下,为什么使用 new Uint8Array,而不是直接将dataView类型的 buffer进行对比? 我觉得是为了统一处理,将 dataView 统一成 typedArray来处理

> > > `... case arrayBufferTag: if ((object.byteLength != other.byteLength) || !equalFunc(**new Uint8Array(object), new Uint8Array(other)**)) { return false } return true ...` > > > 请问一下,为什么使用 new Uint8Array,而不是直接将dataView类型的 buffer进行对比? >...