Skip to content

Commit

Permalink
Update for dependency upgrades.
Browse files Browse the repository at this point in the history
  • Loading branch information
flatheadmill committed Feb 24, 2021
1 parent ee13a00 commit 7e3281c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion error.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const Interrupt = require('interrupt')
const { Interrupt } = require('interrupt')

module.exports = Interrupt.create('Strata.Error', {
BRANCH_BAD_HASH: 'branch load failed hash validation',
Expand Down
2 changes: 1 addition & 1 deletion sheaf.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const fileSystem = require('fs')
const fs = require('fs').promises

// Return the first non null-like value.
const coalesce = require('extant')
const { coalesce } = require('extant')

// An `async`/`await` work queue.
const Turnstile = require('turnstile')
Expand Down
2 changes: 1 addition & 1 deletion storage.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const coalesce = require('extant')
const { coalesce } = require('extant')

class Storage {
static options (options) {
Expand Down

0 comments on commit 7e3281c

Please sign in to comment.