Skip to content

Commit b57bde7

Browse files
committed
run lint
1 parent 2d81627 commit b57bde7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/enum.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ Enum.prototype.add = function add(name, id, comment, options) {
193193
}
194194
}
195195

196-
for (var key of Object.keys(this.values)) {
197-
if (!this._proto_valuesFeatures[key]) {
198-
this._proto_valuesFeatures[key] = {}
196+
for (var name of Object.keys(this.values)) {
197+
if (!this._proto_valuesFeatures[name]) {
198+
this._proto_valuesFeatures[name] = {};
199199
}
200200
}
201201

0 commit comments

Comments
 (0)