What's the difference between this code:
var restify = require("restify")
, clientModule = require("./lib/domain/client.js")
, server = restify.createServer();
And this one:
var restify = require(restify);
var clientModule = require("./lib/domain/client.js");
var server = restify.createServer();
Is the former more efficient than the latter? Or is it just a matter of writing less code?