3 module
.exports
= function roomNameShortener(name
) {
6 var resultantName
= '';
10 .some(function(piece
, index
) {
11 var newResult
= piece
+ (resultantName
.length
? '/' : '') + resultantName
;
13 if (newResult
.length
<= 16 || index
=== 0) {
14 resultantName
= newResult
;
16 // break, we went over with this piece
21 return resultantName
|| name
;