(input)
| 65892 | // node_modules/execa/index.js |
| 65893 | var import_node_buffer2 = require("node:buffer"); |
| 65894 | var import_node_path2 = __toESM(require("node:path"), 1); |
| 65895 | var import_node_child_process3 = __toESM(require("node:child_process"), 1); |
| 65896 | var import_node_process7 = __toESM(require("node:process"), 1); |
| 65897 | var import_cross_spawn = __toESM(require_cross_spawn(), 1); |
| 65898 | |
| 65899 | // node_modules/execa/node_modules/strip-final-newline/index.js |
| 65900 | function stripFinalNewline(input) { |
| 65901 | const LF = typeof input === "string" ? "\n" : "\n".charCodeAt(); |
| 65902 | const CR = typeof input === "string" ? "\r" : "\r".charCodeAt(); |
| 65903 | if (input[input.length - 1] === LF) { |
| 65904 | input = input.slice(0, -1); |
| 65905 | } |
| 65906 | if (input[input.length - 1] === CR) { |
| 65907 | input = input.slice(0, -1); |
no test coverage detected
searching dependent graphs…