Skip to content

Commit

Permalink
npm run package
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed May 15, 2024
1 parent bf2a63b commit 85c0772
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58030,12 +58030,7 @@ class LRUCache {
}

delete (key) {
if (this.map.has(key)) {
this.map.delete(key)
return true
} else {
return false
}
return this.map.delete(key)
}

set (key, value) {
Expand Down
2 changes: 1 addition & 1 deletion dist/setup/index.js.map

Large diffs are not rendered by default.

0 comments on commit 85c0772

Please sign in to comment.