- 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
12 lines
211 B
JavaScript
Executable File
12 lines
211 B
JavaScript
Executable File
'use strict';
|
|
|
|
var stringify = require('./stringify');
|
|
var parse = require('./parse');
|
|
var formats = require('./formats');
|
|
|
|
module.exports = {
|
|
formats: formats,
|
|
parse: parse,
|
|
stringify: stringify
|
|
};
|