source:
node_modules/object-inspect/example/inspect.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 251 bytes |
Line | |
---|---|
1 | 'use strict'; |
2 | |
3 | /* eslint-env browser */ |
4 | var inspect = require('../'); |
5 | |
6 | var d = document.createElement('div'); |
7 | d.setAttribute('id', 'beep'); |
8 | d.innerHTML = '<b>wooo</b><i>iiiii</i>'; |
9 | |
10 | console.log(inspect([d, { a: 3, b: 4, c: [5, 6, [7, [8, [9]]]] }])); |
Note:
See TracBrowser
for help on using the repository browser.