In studying Node.js, I've found that most developers tend to not follow the single-var pattern for declaring variables. This also seems to be the case when declaring dependencies in CommonJS/Browserify.
Is there a technical advantage to having multiple var statements in Node and CommonJS compared to "regular" client-side JavaScript, or is it a matter of personal preference? If not, is there a reason why multiple var declarations are more prevalent?
Besides the well-known literature advocating the single-var pattern, the only data I've found on the subject is this jsperf showing better performance using a single declaration.