1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

fix silly bug from last commit (breaking Pale Moon)

This commit is contained in:
gorhill 2016-07-09 20:00:18 -04:00
parent 02e6b088ef
commit d12ae9277c

View File

@ -100,7 +100,7 @@ var SSet = (function() {
this._i += 1;
return this;
};
Object.defineProperty(self.Set.prototype, 'size', {
Object.defineProperty(Set.prototype, 'size', {
get: function() { return this._set.length; }
});
return Set;