diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 13:28:55 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 18:26:14 +0200 |
commit | 32af48e442a960b8c3f199f5ffad28a34590fcda (patch) | |
tree | c291cb97627bd2cfb65167347261d5ef8f521bfd /lib/cookiemanager.js | |
parent | 2382ba19afc84e9b747a7981ebf72aaa704f08b6 (diff) | |
download | bugzilla-triage-32af48e442a960b8c3f199f5ffad28a34590fcda.tar.gz |
Reformatting to MoFo coding style
Diffstat (limited to 'lib/cookiemanager.js')
-rw-r--r-- | lib/cookiemanager.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cookiemanager.js b/lib/cookiemanager.js index 087d6ab..b777ab9 100644 --- a/lib/cookiemanager.js +++ b/lib/cookiemanager.js @@ -46,10 +46,10 @@ exports.getHostCookies = function getHostCookies(host) { if (cookie.rawHost == host) { result.push({ name: cookie.name, - value: cookie.value, + value: cookie.value }); } } return result; -} +}; |