(value: string)
| 83 | // whether the server is case sensitive or not. |
| 84 | const caseSensitive = isValidUrl(sourceMapUrl) ? false : getCaseSensitivePaths(); |
| 85 | const processMatchInput = (value: string) => { |
| 86 | value = forceForwardSlashes(value); |
| 87 | // built-in 'nocase' match option applies only to operand; we need to normalize both |
| 88 | return caseSensitive ? value : value.toLowerCase(); |
| 89 | }; |
| 90 | |
| 91 | return ( |
| 92 | match([processMatchInput(sourcePath)], this.resolveLocations.map(processMatchInput), { |
no test coverage detected