deno_std icon indicating copy to clipboard operation
deno_std copied to clipboard

The Deno Standard Library

Results 350 deno_std issues
Sort by recently updated
recently updated
newest added

**Describe the bug** If `pooledMap` gets canceled, it seems to throw an uncaught `undefined` value. Cancelling can happen due to returning from within the loop body. The `undefined` does not...

bug

**Is your feature request related to a problem? Please describe.** encode or decode MessagePack **Describe the solution you'd like** ```js import { encode, decode } from "https://deno.land/std/encoding/magpack.ts"; const object =...

**Is your feature request related to a problem? Please describe.** TypeScript's `private` class property modifier is only checked when you are using TypeScript and the encapsulation is lost through compilation....

good first issue
suggestion

**Describe the bug** When comparing two large objects that are almost the same, except for the two using two different instances of a constructor, the function throws without giving any...

bug
needs triage

ref https://github.com/denoland/deno_std/pull/2093#discussion_r862336747

https://doc.deno.land/ now has an "index" page for complex libraries like std (see: https://doc.deno.land/https://deno.land/std). Currently the inline documentation generated is lacking in a lot of key ways. Specifically the doc.deno.land generator...

enhancement
help wanted
good first issue

https://github.com/denoland/deno_std/blob/1329dfaceb654b353bb3d1037dd328679f8349cc/node/http.ts#L165

**Describe the bug** When `assertSnapshot` is called with a multiline string, the newlines are replaced with the characters `\\n` making it hard to read multiline snapshots. **Steps to Reproduce** 1....

bug
needs triage

**Is your feature request related to a problem? Please describe.** I would like to mock out http requests inside deno tests **Describe the solution you'd like** It would be awesome...