Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
578 B
JavaScript
26 lines
578 B
JavaScript
function iter(output, nullish, sep, val, key) {
|
|
var k, pfx = key ? (key + sep) : key;
|
|
|
|
if (val == null) {
|
|
if (nullish) output[key] = val;
|
|
} else if (typeof val != 'object') {
|
|
output[key] = val;
|
|
} else if (Array.isArray(val)) {
|
|
for (k=0; k < val.length; k++) {
|
|
iter(output, nullish, sep, val[k], pfx + k);
|
|
}
|
|
} else {
|
|
for (k in val) {
|
|
iter(output, nullish, sep, val[k], pfx + k);
|
|
}
|
|
}
|
|
}
|
|
|
|
export function flattie(input, glue, toNull) {
|
|
var output = {};
|
|
if (typeof input == 'object') {
|
|
iter(output, !!toNull, glue || '.', input, '');
|
|
}
|
|
return output;
|
|
}
|