inspect-log

Combine eyes.inspector with console.log to provide pretty printing of objects, and normal printing of strings or numbers

Usage no npm install needed!

<script type="module">
  import inspectLog from 'https://cdn.skypack.dev/inspect-log';
</script>

README

inspect-log

Inspect simply combines the eyes module's inspect method with console.log.

If whatever needs to be logged is a String or a Number, inspect would normally log nothing but an elipsis. This module tests if the message is a String or a Number, and if it is, uses console.log to log it. Otherwise, it uses inspect (which pretty-prints objects and arrays, and print its entire depth)

That's it!