Dan Harper
Dan Harper
I don't see any mention of `.remove()` in the code, but I'll look into it when I'm next in a VM, thanks.
I haven't tried this, but just glancing over the docs for Guard, it looks like you can return an array from the watch block. So I'm _guessing_ you could return...
I'm guessing this is down to how Babel (was: 6to5) transpiles ES6 imports. This: ``` js import fs from 'fs' ``` Becomes this: ``` js var _interopRequire = function (obj)...
> You can't tell Github hooks to send you any secret in an API request, so anyone who discovers the URI to your host could send payloads masquerading as official...
Personally I don't use the `require-*` rules as I feel they go against the power of Flow's inference. That said, I can understand the benefit of these rules purely for...
Or perhaps options to include only: - function declarations ``` js function x() {} // included ``` - arrow functions assigned to variables? (because it's quite common, usually serving the...
I love using `sl`, but agree that adding a remote is just the hardest thing 😅 `--to` sounds like it should be the remote name, not the branch name. Perhaps...
Yeah, it was a plan to monkey-patch into Backbone.View's initialisation methods, the only issue is finding Backbone if it's not in the global namespace; but if you have something in...
https://github.com/danharper/backbone_inspector/tree/injection I'm having a few issues with running the code correctly on the main window from the extension. Either I'm tired, or I'm missing something in the docs. So for...
This proposal's for class properties in general (just called "public fields", I assume to differentiate from possible future private properties).