node-jsmin icon indicating copy to clipboard operation
node-jsmin copied to clipboard

%

Open alexbosworth opened this issue 14 years ago • 2 comments

(x = i % size) ? n[c][x]

minified becomes:

(x=iundefinedize)?n[c][x]

alexbosworth avatar Nov 01 '10 06:11 alexbosworth

well i only wrapped around the existing js min implementation, didn't write it myself, so i don't know how to fix it myself.

i suggest to try to find another jsmin library that actually works!

pkrumins avatar Nov 01 '10 06:11 pkrumins

Minifying (x = i % size) ? n[c][x] produces (x=i%size)?n[c][x] in [email protected] on npm.

qwertie avatar Jun 27 '18 05:06 qwertie