IsTable returns true if the format is a table-type format
()
| 30 | |
| 31 | // IsTable returns true if the format is a table-type format |
| 32 | func (f Format) IsTable() bool { |
| 33 | return strings.HasPrefix(string(f), TableFormatKey) |
| 34 | } |
| 35 | |
| 36 | // IsJSON returns true if the format is the JSON format |
| 37 | func (f Format) IsJSON() bool { |
no outgoing calls