Yoshiya Hinosawa

Results 643 comments of Yoshiya Hinosawa

Ah ok. `navigator.platform` seems only available on Node >= 21.2 https://nodejs.org/api/globals.html#navigatorplatform It would be better to support lower versions like 18.x, 20.x, as they are still officially supported versions.

Is this way of indicating 'more content' common in general? What do other tools do for this situation? cc @WasixXD

I personally prefer `...` for indicating 'more contents' which feels more common to me. ↑ and ↓ in this context feel confusing to me. (I don't remember the use case...

> The arrows have the additional benefit of not just indicating `more contents`, but also the location. `...` seems fine until one scrolls and content gets out of bounds above,...

Added some examples to demonstrate both patterns (full and partial) of displaying options

> We should not provide an opinionated time style in the ProgressBarFormatter object, we already provide a defaultFormatter which styles the time. I don't see this reasoning. `MM:SS` is probably...

It looks like Deno doesn't have `unlink` and `unlinkSync`. Instead it has `remove` and `removeSync`. This list tries to mirror Deno FS APIs.

Do you suggest `unlink` would be an alias to `remove`?

Looked at the docs again, (Deno's) `remove` has an option like `recursive` (it can remove the entire directory), but `unlink` (of Node) doesn't. I feel `unlink` can't replace `remove`, and...

> There are several kinds of ProgressBars. A download progress bar is unit based, but percentage based and task based progress bars do not use units at all. I see...