feat: add basic integrity checks + corrections

This commit is contained in:
2025-04-30 00:22:43 +02:00
committed by Louis Heredero
parent 42a7ba0fda
commit efafac3e8a
8 changed files with 656 additions and 56 deletions

View File

@ -1,6 +1,8 @@
import Editor from "./editor.mjs";
import * as utils from "./utils.mjs"
window.addEventListener("load", () => {
const editor = new Editor()
window.editor = editor
window.utils = utils
})