chore: split public and src

This commit is contained in:
Marc Emmanuel 2026-01-13 12:47:37 +01:00
parent 9a8eb05b9c
commit 76f86497c7
684 changed files with 2 additions and 1 deletions

View file

@ -1,11 +0,0 @@
const byId = document.getElementById.bind(document);
Node.prototype.on = function (name, fn, options) {
this.addEventListener(name, fn, options);
return this;
};
Node.prototype.off = function (name, fn) {
this.removeEventListener(name, fn);
return this;
};