deno_std icon indicating copy to clipboard operation
deno_std copied to clipboard

The Deno Standard Library

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

When the commit message is in the form of `release YYYY.MM.DD`, then tag `release-YYYY.MM.DD`

In programming, different data structures are very often needed and it would be good to add them to the package. Some of the most popular are: Queue, Deque of the...

data-structures
feedback welcome

**Is your feature request related to a problem? Please describe.** I hope the pandora box wasn't opened with #5437, but I was hoping for some utilitary function that'd be able...

feedback welcome

Closes https://github.com/denoland/std/issues/4848 Currently includes the following: - `@std/random/between`: `randomBetween` function - `@std/random/integer-between`: `randomIntegerBetween` function - `@std/random/sample`: enhanced version of (to-be-deprecated?) `@std/collections/sample`'s `sample` function, with new `weights` and `random` options -...

**Is your feature request related to a problem? Please describe.** Just like vitest, I'd like to use File Snapshot testing for Deno test. https://vitest.dev/guide/snapshot#file-snapshots **Describe the solution you'd like** **Describe...

suggestion

See #5530 for background.

url

This can be done once WebGPU is stable in the Deno runtime.

upstream

Deno's stdlib has msgpack support. msgpack and CBOR each have pros and cons compared to each other, but this [limitation](https://github.com/msgpack/msgpack/blob/master/spec.md#limitation) is what gives me the desire to have CBOR: >...

suggestion
feedback welcome

**Is your feature request related to a problem? Please describe.** The name prefix `Base` is used as an indicator to not create instances of the class but use it as...

Currently the parser parses all values into string, but the existing parsers in the ecosystem often work in a different way. - `npm:ini` - parses `true` `false` into booleans -...