fix vermiparous variable names
This commit is contained in:
parent
5650e3ff4f
commit
9a2ad7f2c5
@ -68,19 +68,19 @@ export class Vermiparous {
|
||||
sizes.push(parseInt(String.fromCharCode(...buffer)));
|
||||
buffer = [];
|
||||
}
|
||||
const consoom = [];
|
||||
for (let consoomIdx = 0; consoomIdx < 3; ++consoomIdx) {
|
||||
let idekman = 0;
|
||||
while (idekman < sizes[consoomIdx]) {
|
||||
const components = [];
|
||||
for (let componentsIdx = 0; componentsIdx < 3; ++componentsIdx) {
|
||||
let componentContentIdx = 0;
|
||||
while (componentContentIdx < sizes[componentsIdx]) {
|
||||
const byte = bytes[idx];
|
||||
buffer.push(byte);
|
||||
idx++;
|
||||
idekman++;
|
||||
componentContentIdx++;
|
||||
}
|
||||
consoom.push(buffer);
|
||||
components.push(buffer);
|
||||
buffer = [];
|
||||
}
|
||||
const [name, mime, content] = consoom;
|
||||
const [name, mime, content] = components;
|
||||
ret.push({
|
||||
tag: String.fromCharCode(...tag),
|
||||
name: String.fromCharCode(...name),
|
||||
|
Loading…
x
Reference in New Issue
Block a user