Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Jul 5, 2022
1 parent df20890 commit 57f361e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const toSeconds = ms => Math.floor(ms / 1000)
const getStatus = ({ hasValue, isHit, isStale, forceExpiration }) =>
isHit
? isStale
? 'STALE'
: 'HIT'
? 'STALE'
: 'HIT'
: forceExpiration
? 'BYPASS'
: hasValue
Expand Down

0 comments on commit 57f361e

Please sign in to comment.