Garrett
Garrett
My understanding from the documentation is that for decorated instance methods, you never should have to extract the `self` arg, that it is always in `instance`, not `args`, and that...
Newer node versions check the type of the sandbox. Lodash is a function object, but we only care about the properties. So assign those properties to a blank object.
`Foounit` makes it hard to build lobar on newer node versions, etc. Unfortunately, `triejs` includes it as a prod dependency. This should be a simple fix.
I'm getting issues with OMF commands, including `omf doctor`, returning `set_color: Unknown color '^'` (twice in a row). This seems to be happening with most OMF commands, and I suspect...
It would be nice to modify JSON serialization for class instances in a more flexible manner. I have been hoping for something that could be used like this: ```python class...
So I have a lua runtime that can run `luaL_dostring` calls just fine. But when I call `require 'other_lua_file_in_load_path'` in `luaL_dostring`, I get the error: ``` (2): error loading module...
For example: ```js const wrapper = render(firstsecond) const secondLink = wrapper.find('a')[1] expect(secondLink).to.have.attr('href', 'bar') ``` fails (because it expects `secondLink` to respond to `first()`, but it isn't an array of results)...
Fix download links to reference correct files (was reversed - dev links refered to minified versions and vice versa)
Change `this` binding of param handler call to the middleware itself, allowing access to param name. This allows for generic param middleware that can be re-used for multiple params. ##...