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

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
SerayaEryn committed Aug 9, 2019
1 parent 0fca9cf commit e7a8ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cache.js
Expand Up @@ -6,7 +6,7 @@ const ttlSmy = Symbol('ttl')
module.exports = class Cache {
constructor (options) {
this[cacheSym] = Object.create(null)
this.delete = this.delete.bind(this)
this.delete = this.remove.bind(this)
this.size = 0
this[ttlSmy] = options.ttl
}
Expand Down

0 comments on commit e7a8ef4

Please sign in to comment.