Ubuntu Pastebin

Paste from frankban at Wed, 30 Sep 2015 14:15:11 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
      var spaces = result.spaces;
      if (spaces) {
        result.spaces = spaces.split(',').reduce(function(collected, value) {
          var space = value.trim().split(/\s+/).join('-');
          if (space) {
            collected.push(space);
          }
          return collected;
        }, []);
      }
Download as text