mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 03:39:30 +08:00
10 lines
251 B
Text
10 lines
251 B
Text
'use strict';
|
|
|
|
/* eslint-env browser */
|
|
var inspect = require('../');
|
|
|
|
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]]]] }]));
|