google/closure-compiler

String.fromCharCode optimization

Open

#3,606 opened on May 27, 2020

View on GitHub
 (10 comments) (0 reactions) (0 assignees)Java (1,197 forks)batch import
P4featgood first issue

Repository metrics

Stars
 (7,176 stars)
PR merge metrics
 (Avg merge 3d 4h) (1 merged PR in 30d)

Description

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.

Contributor guide