(string: Str)
| 208 | } |
| 209 | |
| 210 | static stringAbs (string: Str) { |
| 211 | if (string === undefined) { |
| 212 | return undefined; |
| 213 | } |
| 214 | return (new Precise (string)).abs ().toString (); |
| 215 | } |
| 216 | |
| 217 | static stringNeg (string: Str) { |
| 218 | if (string === undefined) { |
no test coverage detected