0rpc / zerorpc-node

zerorpc for node.js
http://www.zerorpc.io
Other
705 stars 167 forks source link

Clean up variable declaration pattern #67

Closed radicalsauce closed 8 years ago

radicalsauce commented 8 years ago

I noticed there seemed to be a lot of var declaration patterns throughout the files in lib (eg: single var keyword with multiple variables separated by comma, a leading commas vs. trailing commas, a var keyword per declaration, etc) and I thought it could benefit from a little clean up/consistency.

It seemed like a var keyword per variable declaration was the most common, so that's the pattern I followed. Also added a missing semi-colon.

I left the dependency declaration alone because it was consistent throughout.

bombela commented 8 years ago

I like it, thank you.