(input, encoding)
| 7178 | } |
| 7179 | } |
| 7180 | function bufferFrom(input, encoding) { |
| 7181 | // See https://github.com/Microsoft/TypeScript/issues/25652 |
| 7182 | return Buffer.from && Buffer.from !== Int8Array.from |
| 7183 | ? Buffer.from(input, encoding) |
| 7184 | : new Buffer(input, encoding); |
| 7185 | } |
| 7186 | function isFileSystemCaseSensitive() { |
| 7187 | // win32\win64 are case insensitive platforms |
| 7188 | if (platform === "win32" || platform === "win64") { |
no test coverage detected
searching dependent graphs…