Created
October 23, 2017 06:42
-
-
Save jessecogollo/d5f47c8a4bcc38961d964714b1536bc4 to your computer and use it in GitHub Desktop.
inspect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const { | |
inspect | |
} = require('util'); | |
console.log('inspect', inspect(callbackify, { showHidden: true, depth: null , colors: true }));//reusando funcion de ejemplo de callbackify | |
console.log('inspect Calc', inspect(Calc, { showHidden: true, depth: null, colors: true }));// reusando funcion de ejemplo de inherits | |
console.log('inspect Calc 2', inspect([Calc, true, 123, 'jesse', undefined, null], { showHidden: true, depth: null, colors: true })); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment