- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
11 lines
251 B
JavaScript
Executable File
11 lines
251 B
JavaScript
Executable File
'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]]]] }]));
|