(value string)
| 548 | } |
| 549 | |
| 550 | func doneSquash(value string) string { |
| 551 | switch value { |
| 552 | case NoSquash: |
| 553 | return NoSquash |
| 554 | case SquashWip: |
| 555 | return SquashWip |
| 556 | default: |
| 557 | return Squash |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | func quote(value string) string { |
| 562 | return strconv.Quote(value) |
no outgoing calls
no test coverage detected