Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria
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>
This commit is contained in:
25
network-poc/frontend/node_modules/flattie/dist/index.mjs
generated
vendored
Normal file
25
network-poc/frontend/node_modules/flattie/dist/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user