IMGSS

Results 10 comments of IMGSS

```js function retry(fn, options = {}) { let { times = 3 } = options; const { delay = 1000 } = options; return new Promise((resolve, reject) => { const...

链接: https://pan.baidu.com/s/14Wq-SwxvS62q3pNd3DqxvA 提取码: 4c49

@jsjzh 我理解是这样的,借用官方文档的话 interface 可以Adding new fields to an existing interface,而一个type,A type cannot be changed after being created。 就你的例子来说,`IGetUserServiceList` 由type创建,它的 shape已经固定,但是`_IGetUserServiceList`完全可以在后面再加一个boolean属性: ```ts interface _IGetUserServiceList { rich: boolean; } ``` 从而导致`_IGetUserServiceList`最终的shape是下面这样: ```ts...

谢谢博主的文章,受益匪浅,一个小:bug:是分成了100份,不是1000份哦

第九轮不但选出最快的马,也淘汰最后四名所在的4组,A>B>C>D>(E>F>G>H)(淘汰),所以才从黄色区域选出剩下的三匹马

sorry,只在chrome试过,没考虑兼容性的问题。。容我fix一下

加了「下载」按钮,如果下载没用还能点旁边的小字,总有一种方式适合你:smile: http://imgss.github.io/demo/gif/ ![image](https://user-images.githubusercontent.com/20496797/54747277-6b4aed80-4c09-11e9-9641-4a1486ed9a26.png)

I tried [tsup](https://github.com/egoist/tsup), and it works for me. my tsup.config.json like this: ```json { "entry": ["src/index.ts"], "splitting": true, "outDir": "bin", "sourcemap": true, "format": "esm", "target": "node16", "clean": true } ```...