Qz

Results 18 issues of Qz

Steps to reproduce: 1. Set timer to less than 5 seconds and click Start. 2. The timer exceeds the applied limit (resulting in a negative value). 3. The timer always...

bug
help wanted

The following code works perfectly fine: ```ts new TypeIt(el) .type("Hello") .type("wrld!") .move(-4) .type("o") .go() ``` However, when wrapping the text in HTML tags, an error is thrown: ```ts new TypeIt(el)...

https://jsr.io/@qz/grammy-entity

Still far from perfect and won't be done anytime soon—no ETA, I guess. There won't be any incremental commits; the code will be published all at once when everything's ready...

not translatable
chore

```sh deno fmt --unstable-component MyComponent.svelte ``` Input: ```svelte ``` Output: ```svelte ``` Version: ``` deno 2.0.3 (stable, release, x86_64-unknown-linux-gnu) v8 12.9.202.13-rusty typescript 5.6.2 ``` Probably related to https://github.com/denoland/deno/issues/25919

upstream
deno fmt

https://github.com/grammyjs/grammY/blob/48153f97840df5af0ce3706313d5052c370e0fce/src/convenience/webhook.ts#L112-L117 A timing attack is when an attacker can infer information about a secret by measuring how long it takes to compare values. If the comparison time varies based on...

https://github.com/grammyjs/website/pull/1018. Deployed preview: https://github.com/grammyjs/website/pull/1142#issuecomment-2453345862

## Steps to reproduce Directory structure ```ascii . ├── deno.json ├── dnt.ts └── mod.ts ``` deno.json ```json { "imports": { "@deno/dnt": "jsr:@deno/[email protected]", "unist": "npm:@types/[email protected]" } } ``` mod.ts ```ts import...