source: node_modules/object-inspect/example/inspect.js@ e48199a

main
Last change on this file since e48199a was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 251 bytes
RevLine 
[d24f17c]1'use strict';
2
3/* eslint-env browser */
4var inspect = require('../');
5
6var d = document.createElement('div');
7d.setAttribute('id', 'beep');
8d.innerHTML = '<b>wooo</b><i>iiiii</i>';
9
10console.log(inspect([d, { a: 3, b: 4, c: [5, 6, [7, [8, [9]]]] }]));
Note: See TracBrowser for help on using the repository browser.