(source)
| 218 | } |
| 219 | |
| 220 | function copyObject(source) { |
| 221 | const target = {}; |
| 222 | for (const key in source) |
| 223 | target[key] = source[key]; |
| 224 | return target; |
| 225 | } |
| 226 | |
| 227 | const bufferSep = Buffer.from(pathModule.sep); |
| 228 |
no outgoing calls
no test coverage detected
searching dependent graphs…