Nikita

Results 61 comments of Nikita

you can't pipe when using `-f ssegment` ([docs](https://ffmpeg.org/ffmpeg-formats.html#segment_002c-stream_005fsegment_002c-ssegment)). > This muxer outputs streams to a number of separate files of nearly fixed duration. Output filename pattern can be set in...

You can use `ffprobe` command for now. It *might* be implemented in the library, though. Should I tag the issue as feature request?

I think it would make sense to warn on `Nullish | PossblyFalsy` used in `if`, `while`, ternary, etc. (where `Nullish` is either null or undefined or union of both, and...

How about formatting them like this: ```js import { Lorem, ipsum, dolor, sit, amet, consectetur, adipiscing, elit, Maecenas, vitae, venenatis, arcu, Sed, ultrices, } from "lorem-ipsum" ```

I would find it very valuable to match the behavior of typescript's organize imports command. Right now they're kinda fighting each other. Both typescript and prettier are very widespread amongst...

Also, [conditional exports](https://nodejs.org/api/esm.html#esm_conditional_exports) could be used while bundling to specify the dist paths. They could replace `package.json#{main,module,browser}` if the `package.json#exports` key exists. Example: ```JSON { "exports": { ".": { "require":...

Should `null ?> (x => x)` evaluate to `undefined` (like `null?.()` does) or `null`?

I understand the compatibility concerns but why can't it be changed in 2.0.0-beta already?

It would be even better if the response was a tagged union: ```ts type SWRResponse = | { status: "loading" isValidating: boolean ... } | { status: "error" error: Error...

I changed the default behavior using custom style: ```css .gutter[gutter-name=diagnostics-gutter] { order: 1; } ```