2020-03-20 21:50:41 +00:00
|
|
|
// (beautified)
|
2020-12-24 01:56:02 +00:00
|
|
|
({
|
|
|
|
|
set p(v) {
|
|
|
|
|
console.log(1 + .1 + .1);
|
|
|
|
|
}
|
|
|
|
|
}).p = 0;
|
|
|
|
|
// output: 1.2000000000000002
|
2020-03-01 05:04:21 +00:00
|
|
|
//
|
2020-12-24 01:56:02 +00:00
|
|
|
// minify: 1.2
|
2020-03-01 05:04:21 +00:00
|
|
|
//
|
|
|
|
|
// options: {
|
|
|
|
|
// "compress": {
|
2020-12-24 01:56:02 +00:00
|
|
|
// "unsafe_math": true
|
2020-03-01 05:04:21 +00:00
|
|
|
// },
|
|
|
|
|
// "mangle": false
|
|
|
|
|
// }
|