Feross Aboukhadijeh

Results 607 comments of Feross Aboukhadijeh

Looks like there's a missing `'error'` handler on the `reverse-server` instance.

I think that this is the instance that needs an `'error'` handler added to it. https://github.com/watson/airplay-protocol/blob/a715752fc206ebbb8b2047573cdd81dded4970f5/index.js#L186 I haven't looked into it too deeply though, so I don't know exactly where...

@joserick So, I gather from that repo that the entire protocol has changed in a way that is not easy to support, for Apple TVs which are gen 4 or...

I think he's asking for the ability to do streaming decoding as the bits arrive on the wire.

@stuartpb We'll need to make two new modules and refactor this module like this: ``` js module.exports = function () { return require('is-feross-stuck-in-an-elevator')() && require('is-mafintosh-stuck-in-an-elevator')() } ```

@nijikokun Thanks for the link to `node-colour-extractor`. One advantage this library has over that other one is no native dependency. That means no compilation step on install.

I actually want to use this in an Electron app, so I don't need node support since the DOM is available. But I want to interact with this as a...

Realized that I can pass a function to `sanitize` and do `return !whitelist(name)`. Still, would be better to encourage people to use a whitelist.

Could this be used to add/remove semicolons from a source file, for people who want to convert between coding styles?

@calebsander Can you share output from running the performance suite before and after your changes? Thanks.