issuefiler
issuefiler
# What I did I wrote a simple Node.js module that creates a fresh V8 isolate, does this just once, and exits: ```javascript await execution_context.eval( /* a very long `string`...
```javascript await execution_context.eval("var window = {};"); // Created “globalThis.window” from inside await execution_context.global.set("window", 1); // Setting it fails, not overwriting. ``` ----- https://github.com/laverdet/isolated-vm/blob/22ed400de4cd65cbe537614af59228b3fc416f4b/src/module/reference_handle.cc#L597-L599 ``` TypeError: Set failed at () ```...
``` FATAL Could not add new torrent to the database ERROR: duplicate key value violates unique constraint ``` https://github.com/boramalper/magnetico/blob/9c2183b91b5b37560607d1ebf98cfd1b542cfc27/cmd/magneticod/main.go#L110-L118 What’s the point of having the `DoesTorrentExist` call there when it...
Actually, in issue https://github.com/expressjs/express/issues/4593, I provided _Express_ the `import`ed view engine instance. I registered it as `"Eta"` (`".Eta"` internally), and _Express_ did not use it for `search.eta` (because it was...
From [the MDN](https://developer.mozilla.org/en-US/docs/Web/API/Response/body): > ## `Response.body` > > A [ReadableStream](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream), or else **[`null`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null)** for any Response object [constructed](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response) with a `null` [body](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response#body) property, or **for any actual [HTTP response](https://developer.mozilla.org/en-US/docs/Web/HTTP/Messages#http_responses) that...
```javascript require("color-namer")({h: 180, s: 1, v: 1}) ``` ``` unknown format: [object Object] ``` ----- I want it to understand my HSV colors.
https://github.com/LionC/express-basic-auth/blob/dd17b4de9fee9558269cdc583310bde5331456e7/index.js#L66-L75 Now that UTF-8 has become the de facto universal standard, I suggest adding the UTF-8 `charset` `auth-param` defined by [RFC 7617](https://www.rfc-editor.org/rfc/rfc7617.txt), to the `WWW-Authenticate` header field value `express-basic-auth` produces....
https://github.com/LionC/express-basic-auth/blob/dd17b4de9fee9558269cdc583310bde5331456e7/README.md?plain=1#L137-L140 https://github.com/LionC/express-basic-auth/blob/dd17b4de9fee9558269cdc583310bde5331456e7/index.js#L66-L75 The current default behavior, responding with the status code 401 without the `WWW-Authenticate` header field, **violates [RFC 9110](https://www.rfc-editor.org/rfc/rfc9110#name-401-unauthorized).** Do you have any particular reasons for the decision on...
# Bug https://github.com/a2800276/bncode/blob/704e8d5ddd4f9257d4e787191d2cc7c7ed76ad98/bncode.js#L370-L372 ```Javascript var keys = Object.keys(obj).sort() ``` This is **not** the correct way of sorting dictionary entries. The encoder is producing specification-**incompliant** octets that’ll be floating around in...
It seems that a _constraint_ only glues _two points_, not _a point and a line_. How do I restrict the movement of a body so that it only moves along...