Files
UglifyJS/test/input/reduce/diff_error.reduced.js
2021-10-21 02:07:23 +08:00

12 lines
188 B
JavaScript

// (beautified)
console.log(1 + .1 + .1);
// output: 1.2000000000000002
//
// minify: 1.2
//
// options: {
// "compress": {
// "unsafe_math": true
// },
// "mangle": false
// }