- ignore difference in error messages - improve readability on trailing whitespace differences - improve performance & quality via `console.log()` insertions
20 lines
282 B
JavaScript
20 lines
282 B
JavaScript
// (beautified)
|
|
console.log(function f(a) {
|
|
({
|
|
set p(v) {
|
|
f++;
|
|
}
|
|
});
|
|
return f.length;
|
|
}());
|
|
// output: 1
|
|
//
|
|
// minify: 0
|
|
//
|
|
// options: {
|
|
// "compress": {
|
|
// "keep_fargs": false,
|
|
// "unsafe": true
|
|
// },
|
|
// "mangle": false
|
|
// }
|