DefaultCommonSettings returns a map of all common buffer settings and their default values
()
| 455 | // DefaultCommonSettings returns a map of all common buffer settings |
| 456 | // and their default values |
| 457 | func DefaultCommonSettings() map[string]any { |
| 458 | commonsettings := make(map[string]any) |
| 459 | for k, v := range defaultCommonSettings { |
| 460 | commonsettings[k] = v |
| 461 | } |
| 462 | return commonsettings |
| 463 | } |
| 464 | |
| 465 | // DefaultAllSettings returns a map of all common buffer & global-only settings |
| 466 | // and their default values |
no outgoing calls
no test coverage detected