deno_std
deno_std copied to clipboard
The Deno Standard Library
Right now it's `unknown` and `any`, but the allowed possible ini values are `string`, `boolean`, `number`, `null`, and `undefined`.
This means the `error.message` property is just "Deadline". That does not provide any insight into why the error was thrown. A second parameter which would provide information on how, and...
This commit improves docs of the front-matter module. Specifically, the following things are done: - Use `@example` where appropriate to render the examples more beautifully - Split the big example...
- Some wording changes - Show an example of how to use this module on the main page on jsr.io
The option may look like: ```ts getAvailablePort({ preferredPort: { start: 8000, max: 20 } }); // or getAvailablePort({ preferredPort: [8000, 8001, ..., 8019] }); ``` (Other option type suggestions are...
To be merged on June 21. Feedback from all is welcome before this package is stabilized. Closes #4730
To be merged on June 20. Feedback from all is welcome before this package is stabilized. Closes #4647
part of #3764 This improves the test coverage of `std/yaml`. Added test cases which exercise the handling of floats.
This PR adds test cases of `yaml`, which exercises the handling `omap` type in yaml string. (`yaml/_type/omap.ts` is covered 100% with this change) related: #3713
This commit improves docs of the streams module. Towards #3764