Dragoteryx

Results 2 issues of Dragoteryx

I wrote a Promise implementation in Lua, and thought it might be useful to other people. It's based of Javascript built-in promises so if you've already used them it shouldn't...

Addition

# Why? The current way of creating mixins allows passing arguments. ```js let MyMixin = (superclass, arg1, arg2) => class extends superclass { constructor(...args) { super(...args) this.arg1 = arg1; this.arg2...