Update Item Specifications

Glen Whitney 2025-04-02 17:46:38 +00:00
parent 005f49e691
commit cc4b8d9929

@ -64,7 +64,6 @@ export const sqrt = onType(Number, math => {
return Returns(
Union(Number, Complex(Number)),
a => n < 0 ? complex(0, Math.sqrt(-a)) : Math.sqrt(a)
if (isNaN(a)) return NaN
)
}
```