1
0
Fork 0

wip(core): Migrated to named exports only

This commit is contained in:
Joost De Cock 2022-08-28 02:14:39 +02:00
parent 4b12a7330c
commit c09ae4aa69
23 changed files with 592 additions and 557 deletions

View file

@ -1,4 +1,4 @@
function Attributes() {
export function Attributes() {
this.list = {}
}
@ -103,4 +103,3 @@ Attributes.prototype.clone = function () {
return clone
}
export default Attributes