minify icon indicating copy to clipboard operation
minify copied to clipboard

fix: Do not minify y.z = a.b.giraffe.y.z + 1 to ++y.z.

Open Cyp opened this issue 7 years ago • 0 comments

y.z should not be equivalent with a.b.giraffe.y.z.

If x = 'hello', then x = x + 1 gives 'hello1' but ++x gives NaN.

Fixes #905.

Cyp avatar Oct 17 '18 14:10 Cyp