warjiang

Results 151 comments of warjiang

fix lint error in cloudflare.py 🍭

@AnalogJ can you help me to review this pr, thanks ~

> @AnalogJ can you help me to review this pr, thanks ~ cc @adferrand

any volunteers to review this pr 😭

> Sorry @warjiang for the delay. I look at it. thanks for your reply, if need more details about this pr, plz comment it down, i'll reply as soon as...

can anyone help me, make pr merged or give me other suggestion?

@prakashsvmx as mentioned in #854 , it's not a good way to list all cloud storage provider such as amazon or aliyun, expose virtual path style setting to developer takes...

i have the same problem

不错,关于如何获取day写的很不错。但是还有点问题 1. 关于.valueOf() 和 .getTime(),如果date对象参与运算是调用的toString而不是valueOf 2. .toJSON方法,这里稍微有点逻辑问题,执行JSON.stringify的话,会自动在对象上搜索toJSON方法,而不是说date.toJSON内部调用的是JSON.stringify(date)

@lishengzxc 这里我没有说清楚,我想说的是比如说执行 ``` var d = new Date(); console.log(d + 1); ``` 这个时候相当于执行 ``` var d = new Date(); console.log(d.toString() + 1); ``` 这里突出来的问题是对于 `object + 1`的话 如果`object`是`Date`类型的话会执行`object.toString() + 1`...