Skip to content

Commit 095b8bd

Browse files
committed
style: lint fix
1 parent 57bcea0 commit 095b8bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/convention.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ module.exports = class Convention {
1414
}
1515

1616
static omit(obj, ...props) {
17-
const result = { ...obj };
17+
const result = { ...obj }
1818
props.forEach(function (prop) {
19-
delete result[prop];
20-
});
21-
return result;
19+
delete result[prop]
20+
})
21+
return result
2222
}
2323

2424
}

0 commit comments

Comments
 (0)