truncate(arr) {
   return arr.filter(function(v, i, ar) {
      return i !== ar.length - 1
   })
},