(directory)
| 124 | } |
| 125 | |
| 126 | function wrappedChdir(directory) { |
| 127 | validateString(directory, 'directory'); |
| 128 | rawMethods.chdir(directory); |
| 129 | // Mark cache that it requires an update. |
| 130 | cachedCwd = ''; |
| 131 | } |
| 132 | |
| 133 | function wrappedUmask(mask) { |
| 134 | if (mask !== undefined) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…