(mode string)
| 431 | } |
| 432 | |
| 433 | func notebookEditMode(mode string) string { |
| 434 | if strings.TrimSpace(mode) == "" { |
| 435 | return "replace" |
| 436 | } |
| 437 | return mode |
| 438 | } |
| 439 | |
| 440 | func newOrderedJSONMap() *orderedmap.OrderedMap[string, any] { |
| 441 | return orderedmap.New[string, any](orderedmap.WithDisableHTMLEscape[string, any]()) |
no outgoing calls
no test coverage detected