mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2025-01-10 06:39:27 -07:00
Run prettier
This commit is contained in:
parent
0bb3a59964
commit
95ac04b838
4 changed files with 47 additions and 39 deletions
|
@ -22,16 +22,22 @@ const keys = require('./keys')
|
|||
const utils = require('./utils')
|
||||
|
||||
// Promise.allSettled polyfill
|
||||
Promise.allSettled = Promise.allSettled || ((promises) => Promise.all(promises.map(p => p
|
||||
.then(v => ({
|
||||
Promise.allSettled =
|
||||
Promise.allSettled ||
|
||||
((promises) =>
|
||||
Promise.all(
|
||||
promises.map((p) =>
|
||||
p
|
||||
.then((v) => ({
|
||||
status: 'fulfilled',
|
||||
value: v,
|
||||
}))
|
||||
.catch(e => ({
|
||||
.catch((e) => ({
|
||||
status: 'rejected',
|
||||
reason: e,
|
||||
}))
|
||||
)));
|
||||
)
|
||||
))
|
||||
|
||||
const runVerificationJson = (
|
||||
res,
|
||||
|
|
12
src/keys.js
12
src/keys.js
|
@ -31,12 +31,12 @@ const fetchHKP = (identifier, keyserverBaseUrl) => {
|
|||
query: identifier,
|
||||
}
|
||||
|
||||
let publicKey = await hkp.lookup(lookupOpts)
|
||||
.catch((error) => {
|
||||
let publicKey = await hkp.lookup(lookupOpts).catch((error) => {
|
||||
reject('Key does not exist or could not be fetched')
|
||||
})
|
||||
|
||||
publicKey = await openpgp.key.readArmored(publicKey)
|
||||
publicKey = await openpgp.key
|
||||
.readArmored(publicKey)
|
||||
.then((result) => {
|
||||
return result.keys[0]
|
||||
})
|
||||
|
@ -59,7 +59,8 @@ const fetchWKD = (identifier) => {
|
|||
email: identifier,
|
||||
}
|
||||
|
||||
const publicKey = await wkd.lookup(lookupOpts)
|
||||
const publicKey = await wkd
|
||||
.lookup(lookupOpts)
|
||||
.then((result) => {
|
||||
return result.keys[0]
|
||||
})
|
||||
|
@ -90,7 +91,8 @@ const fetchKeybase = (username, fingerprint) => {
|
|||
reject(`Error fetching Keybase key: ${e.message}`)
|
||||
}
|
||||
|
||||
const publicKey = await openpgp.key.readArmored(rawKeyContent)
|
||||
const publicKey = await openpgp.key
|
||||
.readArmored(rawKeyContent)
|
||||
.then((result) => {
|
||||
return result.keys[0]
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue