| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Specifically check that child nodes are not strictly equal to `false` so that the value zero (0) gets rendered correctly.
Also add explicit checks for `undefined` and `null` (I’ve encountered `undefined` in my testing with [Kitten](https://codeberg.org/kitten/app). Haven’t hit `null` but it would also make it panic, so better safe than sorry). We could use a lax equality comparison (`==`) here but I prefer being explicit about it (but happy either way).
fixes developit#40 and developit#37 inspired by developit#41 The only place we don't have parity right now is arrays (because that's how children are passed) and bigint (because I'm not gonna do dependency wrangling rn)
fixes developit#40 and developit#37 inspired by developit#41 The only place we don't have parity right now is arrays (because that's how children are passed) and bigint (because I'm not gonna do dependency wrangling rn)
| Back | FazBrowse Home | New Git URL |
This enables vhtml to render interpolated numeric zero values.
See #40