(s: string)
| 335 | const [value, errors] = parseEpsil(s); |
| 336 | if (errors && errors.length > 0) return formatError(errors); |
| 337 | return ['UnexpectedSuccess', strip(value as Expression) ?? 'Missing']; |
| 338 | } |
| 339 | |
| 340 | function memToString(n: number): string { |
| 341 | if (n < 1024) return n.toFixed() + ' bytes'; |
| 342 | n /= 1024; |
| 343 | if (n < 1024) return n.toFixed(1) + ' kB'; |
| 344 | n /= 1024; |
no test coverage detected