Hello, I want to write a multiplatform function `expect fun executeExternalCommand(args: List<Str...
j
Hello, I want to write a multiplatform function
expect fun executeExternalCommand(args: List<String>, options): String
On the JVM, I can use
ProcessBuilder(),
On Native, I use
popen
, but how do I do that on Node/JS?