deno_std
deno_std copied to clipboard
The Deno Standard Library
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 [...
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.
**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...
``` > parse('value="value"') { value: '"value"' } ``` Should be: ``` { value: "value" } ``` std 0.224.0