knod
knod
Oh, cool. I didn't know that that was the problem with the PRs. That's good to know.
I haven't @mattogodoy. I just lived with it for the short duration of the project. If I need this package again, I'll be interested in trying your changes, thanks. You...
Thanks for the response. Actually, my point wasn't about duration, it was about the ability to isolate one axis instead of having to pass all the values at once. The...
Node can be used on the front end/in the browser too. It's a package manager. It can also do other stuff, but it can work just fine just to manage...
I did search Firepad's repo and found [where the symbol is created](https://github.com/firebase/firepad/blob/7bbb230075285e1bc0d905b449c719e90141444d/lib/constants.js#L23) (as well as it's [creation through css](https://github.com/firebase/firepad/blob/7bbb230075285e1bc0d905b449c719e90141444d/lib/firepad.css#L287)). It seems like it's being used as a marker or a...
@mercebc: Won't that disable keyboard shortcuts for rich text features? If so, that's not something I want to do and it's something that seems like not expected behavior.
1. It was not doing that. I was in a pre-hook version that needed linting that had no file changes. When I switched to the hook version, made changes in...
At some point we made a discovery about what was going on [with 'lint-staged']. If anyone can remember it, hit me up so we can put it in here.
Yeah, that lines up with what we've been discovering as well. If all it's doing is checking that the component doesn't crash, you can do a `.not.throw()` or whatever it...
@dylanesque : As in this? ```js // aFile.js allRequirements = { q1: function (client) { let passes = (client.hasSection8 && client.household[0].disabled && client.household[0].age > 60); return passes; }, // more...