FLUJOS/VISUALIZACION/node_modules/static-module/node_modules/object-inspect
2025-11-07 00:06:12 +01:00
..
example flow like the river 2025-11-07 00:06:12 +01:00
test flow like the river 2025-11-07 00:06:12 +01:00
.editorconfig flow like the river 2025-11-07 00:06:12 +01:00
.ignored-tmp.js flow like the river 2025-11-07 00:06:12 +01:00
.nycrc flow like the river 2025-11-07 00:06:12 +01:00
.travis.yml flow like the river 2025-11-07 00:06:12 +01:00
1.out flow like the river 2025-11-07 00:06:12 +01:00
2.out flow like the river 2025-11-07 00:06:12 +01:00
3.out flow like the river 2025-11-07 00:06:12 +01:00
index.js flow like the river 2025-11-07 00:06:12 +01:00
LICENSE flow like the river 2025-11-07 00:06:12 +01:00
package.json flow like the river 2025-11-07 00:06:12 +01:00
readme.markdown flow like the river 2025-11-07 00:06:12 +01:00
test-core-js.js flow like the river 2025-11-07 00:06:12 +01:00
util.inspect.js flow like the river 2025-11-07 00:06:12 +01:00

object-inspect

string representations of objects in node and the browser

testling badge

build status

example

circular

var inspect = require('object-inspect');
var obj = { a: 1, b: [3,4] };
obj.c = obj;
console.log(inspect(obj));

dom element

var inspect = require('object-inspect');

var d = document.createElement('div');
d.setAttribute('id', 'beep');
d.innerHTML = '<b>wooo</b><i>iiiii</i>';

console.log(inspect([ d, { a: 3, b : 4, c: [5,6,[7,[8,[9]]]] } ]));

output:

[ <div id="beep">...</div>, { a: 3, b: 4, c: [ 5, 6, [ 7, [ 8, [ ... ] ] ] ] } ]

methods

var inspect = require('object-inspect')

var s = inspect(obj, opts={})

Return a string s with the string representation of obj up to a depth of opts.depth.

install

With npm do:

npm install object-inspect

license

MIT