Function
normalizeProxy
* Returns a callback that when called will normalize a path and call the * original callback * * @param {function} callback * @return {function} * @private
(callback)
Source from the content-addressed store, hash-verified
| 108 | */ |
| 109 | |
| 110 | function normalizeProxy(callback) { |
| 111 | return (filepath, stats) => callback(path.normalize(filepath), stats); |
| 112 | } |
Tested by
no test coverage detected