* @summary Normalizes local source paths to repo-relative POSIX form. * @param {String} source Source path. * @returns {String} Normalized source path.
(source)
| 857 | * @returns {String} Normalized source path. |
| 858 | */ |
| 859 | normalizeSourcePath(source) { |
| 860 | return (source || '').replaceAll('\\', '/').replace(/^\.?\//, ''); |
| 861 | } |
| 862 | |
| 863 | /** |
| 864 | * @summary Returns true for readable text files, including repo symlinks to files. |
no outgoing calls
no test coverage detected