Remix.run Logo
nmilo 3 hours ago

If your assert compiles down to `if (condition) {}` in production then the compiler will optimize away the condition while keeping any side effects.

IshKebab 25 minutes ago | parent [-]

Yeah which may not be what you want. E.g. `assert(expensive_to_compute() == 0)`.

The correct way to solve this is with debug asserts (as in Rust, or how the parent described).