(nullOrString)
| 55 | // The source-map library converts null sources to the "null" URL in its |
| 56 | // sources list, so for equality checking we accept this as null. |
| 57 | function nullish(nullOrString) { |
| 58 | if (nullOrString === "null") { |
| 59 | return null; |
| 60 | } |
| 61 | return nullOrString; |
| 62 | } |
| 63 | |
| 64 | function mapLine(line) { |
| 65 | return line + 1; |
no outgoing calls
no test coverage detected
searching dependent graphs…