Sergii Lavrin

Results 107 issues of Sergii Lavrin

First of all, thanks for `tcomb`. Love it! Now, we started to use Flow in our project and, it became obvious that dynamic and static type checking doesn't live hand...

According to the specs, `sender.replaceTrack` [should return a Promise](https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/replaceTrack) which will resolve when track replacement has finished. `SimplePeer`, on the contrary, returns `void` which makes it harder to await track...

feature request

Hi First of all, I'm sorry for putting here rather a question than an issue. Or, maybe a feature request. We have a `package.json` file with following scripts: ```json "scripts":...

Recently stumbled upon [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn). Some rules seems to be quite useful. Maybe worth a consideration for adding into Standard?

enhancement
accepted

**What version of standard?** 11.0.0 **What operating system, Node.js, and npm version?** Windows 10 **What did you expect to happen?** Right now it is impossible to add to the Standard...

question

See #750 and #1183 Mentioned issues were closed without any resolution. However, it is still impossible to use `eslint-plugin-vue` with `standard` without opting to use `eslint-plugin-standard` and regular Eslint configuration...

bug

Hi First of all, thanks for great Grunt task! Sometime it's useful to have ability dynamically trim transparent or white border from image (or, on contrary add it), for serving...

enhancement

Hi Quite simple thing: Make checked items in checklists to dimout (use close to commented-out blocks color): ``` markdown - [ ] item - [x] completed - [ ] item...

enhancement
C: syntax

Hi Thanks for the great lib! Following code: ```js jump(`#SOME-NOT-EXISTING-ID-ON-PAGE`) ``` will result in quite obscure error: ``` Uncaught TypeError: Cannot read property 'getBoundingClientRect' of null ``` I think error...

I wonder about this example from documentation: ```js URI.joinPaths('', 'a', ''); // returns URI("/a/") ``` why does it add leading slash? It seems to be unexpected behavior, since you're like...