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.
I noticed there seemed to be a lot of
var
declaration patterns throughout the files inlib
(eg: singlevar
keyword with multiple variables separated by comma, a leading commas vs. trailing commas, avar
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.