Update deps and fix webpack

This commit is contained in:
Crawl
2017-07-16 14:34:23 +02:00
parent ed84d76a42
commit 26e5ef3205
9 changed files with 20 additions and 22 deletions

View File

@@ -1087,8 +1087,8 @@ class Guild {
_sortPositionWithID(collection) {
return collection.sort((a, b) =>
a.position !== b.position ?
a.position - b.position :
Long.fromString(a.id).sub(Long.fromString(b.id)).toNumber()
a.position - b.position :
Long.fromString(a.id).sub(Long.fromString(b.id)).toNumber()
);
}
}