Michał Gołębiowski-Owczarek

Results 713 comments of Michał Gołębiowski-Owczarek

I confirm it doesn't work on Node 0.11.13. It's supposed to be released soon as Node 0.12 stable so it won't work on a stable version...

I like the second way better. I'd also consider putting methods on a prototype to make it easier to migrate to ES6 classes later. I also agree it's time to...

I wish it was possible to conditionally install deps. The `execSync` module is technically not needed in Node 0.12 since it's natively available there but if we need to stay...

...or even better, just use the native `require('child_process').execSync` to implement your API in Node >=0.11

Hm, actually it seems it's possible to use with npm's [optionalDependencies](https://www.npmjs.org/doc/package.json.html#optionalDependencies). Still, my suggestion from the last comment would be useful.

Could you read the attribute from `document.documentElement` instead? That’s always available. The fact that `body` may not exist is the reason why jQuery switched to attaching elements used for support...

> I'm curious if the team is also considering adding standalone [WebKit](https://webkit.org/) support in addition to Safari for MacOS? (I can't seem to find any issues about this). @sharmilajesupaul If...

@dignifiedquire Why close? It seems to be a very useful feature request.

To add to @fbender's list, starting from Firefox 41: 1. `document.queryCommandSupported('paste')` will return `false` (https://bugzilla.mozilla.org/show_bug.cgi?id=1161721). 2. `document.queryCommandEnabled('cut'/'copy')` will return `true` only when inside a user-generated event handler (https://bugzilla.mozilla.org/show_bug.cgi?id=1162952#c9).

I've hit this issue now trying to use [ESLint's `no-restricted-imports` rule](https://eslint.org/docs/rules/no-restricted-imports). In files where I apply this rule I'd like to forbid all imports except for `**/*.i18n` ones. Normally I'd...