Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created November 18, 2019 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sibelius/2261a587b608aa7612087ef476e119ab to your computer and use it in GitHub Desktop.
Save sibelius/2261a587b608aa7612087ef476e119ab to your computer and use it in GitHub Desktop.
consoleAll will pretty print your object showing all nested properties
import prettyFormat from 'pretty-format';
export const consoleAll = (val: any) => {
// eslint-disable-next-line
console.log(prettyFormat(val));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment