Rename injection module to be classified as an entry point

This commit is contained in:
buzz-lightsnack-2007 2024-04-28 13:08:35 +08:00
parent 3927a04881
commit 543a3d4e13

View file

@ -1,14 +0,0 @@
export default class injection {
constructor (parent, element, id, classes, options) {
let ELEMENTS = {};
ELEMENTS[`parents`] = ((typeof parent) != `object`) ? docuent.querySelectorAll(parent) : [...parent];
// must only run if there are elements to inject
if ((ELEMENTS[`parents`]).length > 0) {
}
};
}