xyJen

Results 4 comments of xyJen

> 请问是想用补全功能吗?我们正在评估和开发中 是的,支持ts/js。内网有用户群吗

来自淘系前端团队公众号 ![image](https://user-images.githubusercontent.com/24266963/138995469-25e30bfd-e5f9-446f-96e3-b793dc47d9c4.png)

@otakustay 这里有个逻辑问题。CodeCell 中为了 解决 [210](https://github.com/otakustay/react-diff-view/issues/210) 的问题,将 token 的判空条件从 `(tokens.length ? tokens.map(actualRenderToken) : ' ')` 改为 `(isEmptyToken(tokens) ? ' ' : tokens.map(actualRenderToken))` 但是,从 Hunks 组件 -> SplitHunk -> SplitChange -> CodeCell...