Skip to content

Instantly share code, notes, and snippets.

@wadackel
Created April 10, 2017 03:12
Show Gist options
  • Save wadackel/31b0a0eb641e571e9d24ae836f14c4ab to your computer and use it in GitHub Desktop.
Save wadackel/31b0a0eb641e571e9d24ae836f14c4ab to your computer and use it in GitHub Desktop.
Simple debugging for node.js. (use TypeScript)
import { inspect } from 'util';
const echo = (...args: any[]) => (
args.forEach(val => console.log(inspect(val, { showHidden: false, depth: Infinity, colors: true })))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment