Yoshiya Hinosawa

Results 644 comments of Yoshiya Hinosawa

Also `deno_std/node/_buffer.js` seems corresponding to `node/lib/buffer.js`. So let's just rename it to `deno_std/node/buffer.js` in this case. Please carefully compare node.js `lib/` directory and deno_std `node/` directory before starting working on...

Also `_timers` will conflicts with #1699. Please avoid it at first.

I updated the description, and crossed out some items (`_core.ts` `_events.js` `_next_tick.ts` `_utils.ts`) which don't seem existing in `internal/`

@iuioiua I think there's no such issue. Do you think we should merge .mjs and .d.ts into .ts?

I feel the issue is too specific to that browser extension. > The one pain point with this combo is that my browser is adamant about caching every response it...

One solution might be to use `true color` coloring when the terminal supports it, and fallback to ansi color when no support of it Note: [supports-color](https://github.com/chalk/supports-color) npm module seems doing...

The issue happens on some terminals with ansi colors (`green`, `bgGreen`, etc). To avoid that if the terminal supports `true color` then we should use color code (like `006400` for...

@ccheng I saw denoland/deno#6171, but the main type `ReaderMaybeSync = Reader | ReaderSync` looks hard to work with / hard to reason about to my eyes. That requires `as` casting...

For I/O, we're moving from Reader/Writer interface to [Web Stream](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) based interface. So, in my view, these `std/io` related issues are half deprecated. (BTW I think we've never discussed about...

> I've seen mention of that. Why's that? Just web compatibility? Mostly yes. Web Stream is already part of basic builtin Web APIs such as `fetch` (the response body is...