minify
minify copied to clipboard
fix: Do not minify y.z = a.b.giraffe.y.z + 1 to ++y.z.
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.