made leading comma style more consistent

This commit is contained in:
tigerbot 2017-07-11 15:07:16 -06:00
parent 86b304a209
commit 43a61546d8
3 changed files with 11 additions and 11 deletions

View File

@ -92,11 +92,11 @@
// First, create a PBKDF2 "key" containing the passphrase
return crypto.subtle.importKey(
"raw",
Unibabel.utf8ToBuffer(nodeObj.secret),
{ "name": kdf.kdf },
false,
["deriveKey"]).
"raw"
, Unibabel.utf8ToBuffer(nodeObj.secret)
, { "name": kdf.kdf }
, false
, ["deriveKey"]).
// Derive a key from the password
then(function (passphraseKey) {
var keyconf = {

View File

@ -26,11 +26,11 @@
// First, create a PBKDF2 "key" containing the password
return crypto.subtle.importKey(
"raw",
Unibabel.utf8ToBuffer(passphrase),
{ "name": kdfname },
false,
["deriveKey"]).
"raw"
, Unibabel.utf8ToBuffer(passphrase)
, { "name": kdfname }
, false
, ["deriveKey"]).
// Derive a key from the password
then(function (passphraseKey) {
return crypto.subtle.deriveKey(