source: imaps-frontend/node_modules/object-inspect/example/inspect.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 251 bytes
Line 
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.