(filePath)
| 125 | }; |
| 126 | |
| 127 | function assetPathServed(filePath) { |
| 128 | if (/\.index\.html/.test(filePath)) { |
| 129 | return path.dirname(filePath); |
| 130 | } |
| 131 | return filePath; // URL path |
| 132 | } |
| 133 | |
| 134 | function sendInternal(url,res) { |
| 135 | if (url.charAt(0) !== '/') { url = '/'+url; } |
nothing calls this directly
no outgoing calls
no test coverage detected