* Drops require cache for the certain module * * @param {string} modulePath
(modulePath)
| 6 | * @param {string} modulePath |
| 7 | */ |
| 8 | function dropCache(modulePath) { |
| 9 | delete require.cache[require.resolve(modulePath)]; |
| 10 | }; |
| 11 | |
| 12 | /** |
| 13 | * @param {string} extension |
no outgoing calls
no test coverage detected
searching dependent graphs…