(s: string)
| 329 | const [value, errors] = parseEpsil(s); |
| 330 | if (errors && errors.length > 0) return formatError(errors); |
| 331 | return strip(value); |
| 332 | } |
| 333 | |
| 334 | export function invalidEpsil(s: string): Expression | null { |
| 335 | const [value, errors] = parseEpsil(s); |
| 336 | if (errors && errors.length > 0) return formatError(errors); |
| 337 | return ['UnexpectedSuccess', strip(value as Expression) ?? 'Missing']; |
| 338 | } |
no test coverage detected