v0.23.0 — dump & dd debugging
Two helpers for the moments you'd reach for console.log:
dump(user, order); // logs, keeps going
const total = dump(computeTotal()); // logs AND returns it
dd(await request.all(), request.headers()); // renders in the browser, haltsdd() throws a self-rendering exception, so it works the same on Node and the edge. See docs/debugging.md.