Yoshiya Hinosawa

Results 644 comments of Yoshiya Hinosawa

Closing as it is stale now. Let's revisit when someone start complaining about this

Closing as we have better way to handle broken symlinks. See https://github.com/denoland/deno_std/issues/3452#issuecomment-2058863401 for more details. Also the API changes to expandGlob don't seem discussed very well. I don't find they...

> I'm having a problem with using --allow-read=.env > It wants to read .env.defaults and .env.example, which I don't care about. I understand this motivation, but I don't think it's...

In Node `assert.equal` and `assert.strictEqual` don't throw with the below: ```js assert.equal(NaN, NaN) assert.strictEqual(NaN, NaN) ``` Also in Jest, the below doesn't throw: ```js expect(NaN).toEqual(NaN); expect(NaN).toBe(NaN); ``` I think assertion...

Maybe let's explore how this `MiddlewareFunction` can be used in fresh and oak? Also this middleware doesn't seem having ability to pass information to the later middleware such as auth...

> "Is a context object a requirement here or can context be managed without adding a parameter to MiddlewareHandler?" I think the context info can be stored somewhere else by...

Thanks for reporting. ``` payload: { }, ``` part looks missing the property `message: 'NodeNotFound'`

I don't see the motivation of this change well. `stringify` sounds confusing than `format` to me.

From my observation, `stringify` name is usually used for serialization of complex object/data to string representation (such as the case of toml, yaml, csv, json, etc), on the other hand,...

> That is not the case with stringify(). JSON.stringify has formatting options: `replacer` and `space` I still don't see the motivation of the rename. The first line of jsdoc of...