I am trying to run a script that looks like this:
const response = await request.getAsync(channelAPI);
let responseData = JSON.parse(response[0].body);
However, when I run this on one machine it works, whereas the other just returns the response as an object and I don't need the [0].
What is going on? I ran into this same problem before, both machines are looking at the same package.json so what is the problem?