node-irc icon indicating copy to clipboard operation
node-irc copied to clipboard

"ReferenceError: rawResponse is not defined" when using @vercel/ncc

Open Skhmt opened this issue 1 year ago • 0 comments

ReferenceError: rawResponse is not defined at rawResponse = response[i].split(" "); when using @vercel/ncc to combine everything into one .js file.

Fix is to change line 76 of client.js from:

rawResponse = response[i].split(" ");

to

var rawResponse = response[i].split(" ");

Skhmt avatar Apr 17 '24 21:04 Skhmt