google/closure-compiler

String.fromCharCode optimization

开放

#3,606 创建于 2020年5月27日

 (10 条评论) (0 个反应) (0 位负责人)Java (1,197 个派生)batch import
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.

贡献者指南