/**
  * Get the last value from an array
  */
 public static function last($array, $take = null)
 {
     if (!$take) {
         return array_pop($array);
     }
     return ArraysMethods::rest($array, -$take);
 }