After #Bun unsafe audit slop report...
https://bun.com/bun-unsafe-audit
...I've randomly looked into the CSS parser module and found this:
A function that uses `unsafe` to convert a `SmallList` into a boxed slice. I can't say anything about whether it is a correct usage of `unsafe`.
What I can say, however:
There is already an equivalent method on `SmallList` that uses _zero_ `unsafe`!
In other words: It's duplicated code + #unsafe!
1/3