Cuixiping

Results 161 comments of Cuixiping

You can use a simplest way. ```vbs Private Function aj_ReadNumericValue(ByVal val) aj_ReadNumericValue = val + 0 End Function ```

Just change one line code to add global favorites if you don't care workspace favorites. I did and it works well for me. File: `src/class/storage.ts` Change this line ``` this.storageFilePath...

我就喜欢极简风啊, 你这个刚好符合, 赞1个.

More download bytes also take off more money to pay for the could server.

`Group` and `.chain()` can be enhanced to cover the cases. `Group` should have all methods of tween instance. `.chain()` should can be chained more times.

> There is no simple way of doing it, you need to dive into the code and rewrite it > > PS: I made an ui for shorty: [Here](https://github.com/JMcrafter26/shorty) The...

> > > There is no simple way of doing it, you need to dive into the code and rewrite it > > > PS: I made an ui for...

Thank you for your research. Yes, the $padding is confusing. I set `$padding=8;`, tested from 1 to 50. Results of 1~9, 16, 27, 39 and 42 are 6 chars, others...

input: ```js console.log(0.1 + 0.2); console.log(0.1 + 2); console.log(1 + 0.2); console.log(1 + 2); ``` terser output: ```js console.log(.1 + .2), // not evaluated console.log(2.1), // evaluated console.log(1.2), // evaluated...

```js this.one(); this.one(); this.one(); this.one(); ``` should be converted to? ```js let t='one'; this[t](); this[t](); this[t](); this[t](); ```