Eric Ferraiuolo

Results 22 comments of Eric Ferraiuolo

I can. Sorry this slipped through the cracks.

I'll work on doing the pragmatically-correct thing for these. I held off on adding support for vendor prefixes, because the best practice is to include a non-prefix query in the...

Can you please provide the rationale for this?

I'm hesitant to add this because it doesn't match how a browser would try to match its current state against a CSS Media Query. I feel that adding another param...

The current implementation uses `JSON.stringify()` with a `replacer` function, which [doesn't support `Symbol` keys](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#Description). It could "work" for `Symbol` values, but I'm curious to know how you are thinking of...

Have you tried feeding the output of module into a minifier? I would suggesting looking at [babili](https://github.com/babel/babili) as it supports ES6+ syntax while Uglify doesn't.

I would prefer to keep this package simple and not add a minifier as a runtime dependency. Have you thought about minifying your functions/code at build time that will be...

Seems like a good idea to me! @jamesalley @jconniff @tilomitra what do you all think of this idea?

While I do like the looks of the API that @dherman is proposing being the dynamic form of the importing the default export, I want to echo @domenic's concern about...