scarf
scarf
**Describe the bug** parse() cannot parse [ISO week date](https://en.wikipedia.org/wiki/ISO_week_date) such as `2023-W50`. **Steps to Reproduce** ```ts import { parse } from "https://deno.land/[email protected]/datetime/parse.ts" parse("2023-W50", "yyyy-MM-dd") ``` **Expected behavior** it returns `2023-12-11`....
**Is your feature request related to a problem? Please describe.** https://github.com/denoland/deno_std/blob/9b9be2a25a8ae7cb4ce3835b1c7a4a4170163e22/streams/read_all.ts#L31-L34 It is not clear for users how the old code should be migrated to use web streams API. **Describe...
**Is your feature request related to a problem? Please describe.** followup of https://github.com/denoland/deno_std/pull/3886#issuecomment-1835302006. currently `assert/_format.ts` and `expect/_format.ts` is identical but duplicated across modules. **Describe the solution you'd like** create private...
**Is your feature request related to a problem? Please describe.** While i was creating a table JSX component, I found it convenient to pass in array of `title` and `content`...
**Is your feature request related to a problem? Please describe.** return type of some of the functions of `collections/` functions can be inferred in compile time. inspiration: - https://github.com/dilan-dio4/strz -...
Version: Deno 1.39.0+d51fda9 (canary, x86_64-unknown-linux-gnu) ## Minimal Reproduction `add.js` ```js /// export const add = (a) => a + 1 ``` `add.d.ts` ```ts export declare const add: (a: number) =>...
### Provide environment information ```bash OS: Linux TG02 6.5.0-stock #1 SMP PREEMPT_DYNAMIC Wed Aug 30 11:09:37 KST 2023 x86_64 x86_64 x86_64 GNU/Linux SHELL: fish, version 3.6.1 ASDF VERSION: v0.11.1-27c8a10 ASDF...
- did `asdf reshim` - set local python to `3.10.4` - `asdf list python` works - python version is correct - `asdf exec` shows correct pip version - however, `No...
### Clear and concise description of the problem  https://shields.io provides following badge styles: flat (default), flat-square, plastic, for-the-badge, social. currently shield.deno.dev lacks styles other than flat, soft-locking other available...
## Issue  `JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.` errors are popping OOTB. this may be related to https://github.com/denoland/deno/issues/9425. ## How to reproduce 1. follow...