v0.4.0
- Remove functions already available natively (i was not aware of them) 6b7d2a3
| Before | After | MDN |
|--------|-------|-----|
| --abs(-20px) | abs(-20px) | abs() |
| --sign(var(--x)) | sign(var(--x)) | sign() |
| --hypot(100px, 100px) | hypot(100px, 100px) | hypot() |
| --round-to(127px, 8px) | round(127px, 8px) | round() |
| --floor-to(127px, 8px) | round(down, 127px, 8px) | round() |
| --ceil-to(121px, 8px) | round(up, 121px, 8px) | |