mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2026-03-22 08:03:33 +00:00
Comments & code style
This commit is contained in:
@@ -36,6 +36,7 @@ function Keyring(storeHandler) {
|
||||
|
||||
/**
|
||||
* Calls the storeHandler to load the keys
|
||||
* @async
|
||||
*/
|
||||
Keyring.prototype.load = async function () {
|
||||
this.publicKeys = new KeyArray(await this.storeHandler.loadPublic());
|
||||
@@ -44,6 +45,7 @@ Keyring.prototype.load = async function () {
|
||||
|
||||
/**
|
||||
* Calls the storeHandler to save the keys
|
||||
* @async
|
||||
*/
|
||||
Keyring.prototype.store = async function () {
|
||||
await Promise.all([
|
||||
|
||||
Reference in New Issue
Block a user