Uglify is a pretty nifty javascript minifier but it also has the lesser-known ability to generate and walk the AST. Unfortunately, uglify's traverser is a bit cumbersome to use so I wrote a library using my own traverser to make it easy! Introducing burrito, a crazy new library to make AST traversals and manipulations crazy easy. Given this snippet of code: f() && g(h()); foo(); It's super easy to

