Skip to content

Commit 3a09fef

Browse files
committed
fix: renamed to remove()
1 parent 2060a13 commit 3a09fef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_DataStructures_/HashTable/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class HashTable {
129129
return this._values(index, key);
130130
}
131131

132-
delete(key) {
132+
remove(key) {
133133
// get the index
134134
// eslint-disable-next-line no-underscore-dangle
135135
const index = this._hash(key);

0 commit comments

Comments
 (0)