79685461

Date: 2025-07-01 02:42:05
Score: 0.5
Natty:
Report link

For anyone viewing this for Svelte 5 (Runes), you can do the same with state runes using $effect:

$effect(() => (c, console.log("yes")))

Alternatively, $inspect(...).with if you do not want this to run in production builds.

$inspect(c).with(() => console.log("yes"));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zelo101