(extension)
| 118 | |
| 119 | |
| 120 | function estimateTypeByFileExtension(extension) { |
| 121 | var matchingPluginData = doEstimateTypeByFileExtension(extension) |
| 122 | |
| 123 | if (matchingPluginData) { |
| 124 | console.log('Found plugin by parameter type: ' + extension); |
| 125 | } |
| 126 | |
| 127 | return matchingPluginData; |
| 128 | } |
| 129 | |
| 130 | |
| 131 | function estimateTypeByFileExtensionFromPath(documentUrl) { |
no test coverage detected