(options, value, error)
| 66859 | }; |
| 66860 | options.env = getEnv(options); |
| 66861 | options.stdio = normalizeStdio(options); |
| 66862 | if (import_node_process7.default.platform === "win32" && import_node_path2.default.basename(file, ".exe") === "cmd") { |
| 66863 | args.unshift("/q"); |
| 66864 | } |
| 66865 | return { file, args, options, parsed }; |
| 66866 | }; |
| 66867 | var handleOutput = (options, value, error) => { |
| 66868 | if (typeof value !== "string" && !import_node_buffer2.Buffer.isBuffer(value)) { |
| 66869 | return error === void 0 ? void 0 : ""; |
| 66870 | } |
| 66871 | if (options.stripFinalNewline) { |
| 66872 | return stripFinalNewline(value); |
no test coverage detected
searching dependent graphs…