lint: attribute pool

lint-AttributePool
John McLear 2020-12-15 15:44:51 +00:00
parent a4e2ea7a8c
commit 6e5d674dda
1 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,5 @@
'use strict';
/**
* This code represents the Attribute Pool Object of the original Etherpad.
* 90% of the code is still like in the original Etherpad
@ -70,9 +72,11 @@ AttributePool.prototype.getAttribValue = function (num) {
AttributePool.prototype.eachAttrib = function (func) {
for (const n in this.numToAttrib) {
if (this.numToAttrib[n]) {
const pair = this.numToAttrib[n];
func(pair[0], pair[1]);
}
}
};
AttributePool.prototype.toJsonable = function () {
@ -87,8 +91,10 @@ AttributePool.prototype.fromJsonable = function (obj) {
this.nextNum = obj.nextNum;
this.attribToNum = {};
for (const n in this.numToAttrib) {
if (this.numToAttrib[n]) {
this.attribToNum[String(this.numToAttrib[n])] = Number(n);
}
}
return this;
};