Skip to content
This repository has been archived by the owner on Jul 27, 2021. It is now read-only.

Commit

Permalink
Fixed style lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchoz49 committed Nov 12, 2019
1 parent 578f25f commit f27098f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/feed-descriptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class FeedDescriptor {
/**
* @type {Buffer}
*/
get discoveryKey() {
get discoveryKey () {
return this._discoveryKey;
}

Expand Down
2 changes: 1 addition & 1 deletion src/feed-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ class FeedStore extends EventEmitter {
* @param {FeedDescriptor} descriptor
* @returns {Promise}
*/
async _persistFeed(descriptor) {
async _persistFeed (descriptor) {
const key = `${STORE_NAMESPACE}/${descriptor.key.toString('hex')}`;
const data = await this._indexDB.get(key);
const newData = descriptor.serialize();
Expand Down

0 comments on commit f27098f

Please sign in to comment.