Skip to content

1.2.10

Compare
Choose a tag to compare
@shysolocup shysolocup released this 26 Sep 18:02
· 81 commits to main since this release
26feaae

due to complications and me being a little stupid I had to remove the support I was trying to add for classes created using non-class values

you can still do it but it won't be supported and will go back to returning the value you put in

const Class = require('aepl');

new Class("Main", [1, 2, 3]);

let main = new Main();

console.log(main); // [1, 2, 3]