Class: Time
- Inherits:
 - 
      Object
      
        
- Object
 - Time
 
 
- Defined in:
 - lib/discorb/extend.rb
 
Overview
rubocop: disable Style/Documentation
Instance Method Summary collapse
- 
  
    
      #to_df(type = nil) -> String 
    
    
  
  
  
  
  
  
  
  
  
    
Format a time object to a Discord formatted string.
 
Instance Method Details
#to_df(type = nil) -> String
Format a time object to a Discord formatted string.
      12 13 14 15 16 17 18  | 
    
      # File 'lib/discorb/extend.rb', line 12 def to_df(type = nil) if type.nil? "<t:#{to_i}>" else "<t:#{to_i}:#{type}>" end end  |