Merge pull request #2132 from thelounge/xpaw/no-client-lodash

Remove unintentionally included lodash in client build
This commit is contained in:
Pavel Djundik 2018-02-28 18:49:32 +02:00 committed by GitHub
commit 61438cbe5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,5 @@
"use strict";
const _ = require("lodash");
const constants = require("./constants");
const templates = require("../views");
@ -22,8 +21,8 @@ function getStoredTypes(condensed) {
function updateText(condensed, addedTypes) {
const obj = getStoredTypes(condensed);
_.forOwn(addedTypes, (count, type) => {
obj[type] += count;
Object.keys(addedTypes).map((type) => {
obj[type] += addedTypes[type];
condensed.data(type, obj[type]);
});