Add prettier

This commit is contained in:
Ken-Håvard Lieng 2018-04-06 01:46:22 +02:00
parent 0cbbc1b8ff
commit b176b79144
46 changed files with 832 additions and 544 deletions

View file

@ -8,7 +8,10 @@ export function normalizeChannel(channel) {
return channel;
}
return channel.split('#').join('').toLowerCase();
return channel
.split('#')
.join('')
.toLowerCase();
}
export function isChannel(name) {