P4featgood first issue
仓库指标
- 星标
- (7,176 个星标)
- PR 合并指标
- (PR 指标待抓取)
描述
I used: https://closure-compiler.appspot.com/home
Input code:
document.write(String.fromCharCode(115));
Expected output:
document.write("s")
Actual output:
document.write(String.fromCharCode(115));
I expected the String.fromCharCode function to be removed to just the resulting character.