Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 426 Bytes

inspect-large-objects.md

File metadata and controls

11 lines (7 loc) · 426 Bytes

Inspect large objects

Inspect large objects in Node when debugging:

const util = require('util')

console.log(util.inspect(largeObject, {showHidden: false, depth: null}))

Hat tip to Stack Overflow. See the docs.