Rich-Harris / butternut

The fast, future-friendly minifier
https://butternut.now.sh
MIT License
1.17k stars 17 forks source link

Whitespace around shorthand method #23

Closed Rich-Harris closed 7 years ago

Rich-Harris commented 7 years ago

https://butternut.now.sh/?version=0.3.4&gist=f7d646bb015d201fecce8725aa698076

// input
obj = {
  foo () {

  }
};

// expected
obj={foo(){}}

// actual
obj={foo () {}}