Closed Sang-Oh closed 8 years ago
luamin shell v.0.2.8 minifies %% into %.
%%
%
before:
function (c) return string.format ("%%%02X", string.byte(c)) end)
after:
function (c) return string.format ("%%02X", string.byte(c)) end)
I cannot reproduce this issue.
$ luamin -c 'string.format ("%%%02X", string.byte(c))' string.format("%%%02X",string.byte(c))
Please post a command that reproduces the issue if you want me to re-open.
luamin shell v.0.2.8 minifies
%%
into%
.before:
after: