1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-14 23:12:28 +02:00
This commit is contained in:
gorhill 2017-05-27 14:31:46 -04:00
parent e425290c8f
commit 9a4681d4e1
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -285,6 +285,9 @@
// longer needed. A timer will be used for self-garbage-collect.
// Cleaning up 10s after last hit sounds reasonable.
// https://github.com/gorhill/uBlock/issues/2656
// Can't use chained calls if we want to support legacy Map().
µBlock.stringDeduplicater = {
strings: new Map(),
timer: undefined,
@ -293,7 +296,8 @@
lookup: function(s) {
var t = this.strings.get(s);
if ( t === undefined ) {
t = this.strings.set(s, s).get(s);
this.strings.set(s, s);
t = this.strings.get(s);
if ( this.timer === undefined ) { this.cleanupAsync(); }
}
this.last = Date.now();