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

The below example doesn't throw a type error: ```ts import { parseRange } from "@std/semver"; const range = parseRange("invalid"); console.log(range); ``` Instead it prints the below range object: ```js [...

bug
semver

I suggest we drop these 4 from the first stabilization targets. - `archive` should be stabilized after Web Stream API support - It is likely that most of `datetime` APIs...

We should use `#private` or regular properties instead of these access modifiers. This work was essentially done in https://github.com/denoland/deno_std/pull/4793/commits/5b86a65872ecdfcb7454646416577cab4c7811b7 but was then later reverted.

data-structures

**Describe the bug** **Steps to Reproduce** ``` > stringify({ value: "undefined" }) "value=undefined" > stringify({ value: "1" }) "value=1" ``` **Expected behavior** These should stringify with quotes like `"undefined"` and...

bug
ini

``` > parse('value="value"') { value: '"value"' } ``` Should be: ``` { value: "value" } ``` std 0.224.0

bug
ini
PR welcome