( map: DecodedMap, needle: Needle, )
| 397 | } |
| 398 | |
| 399 | export function getOriginalPosition( |
| 400 | map: DecodedMap, |
| 401 | needle: Needle, |
| 402 | ): OriginalMapping | null { |
| 403 | const result = originalPositionFor(map as any, needle) |
| 404 | if (result.column == null) { |
| 405 | return null |
| 406 | } |
| 407 | return result |
| 408 | } |
no outgoing calls
no test coverage detected