dequote removes surround quotes from the provided string
(in string)
| 493 | |
| 494 | // dequote removes surround quotes from the provided string |
| 495 | func dequote(in string) string { |
| 496 | return strings.Trim(in, "'\"`") |
| 497 | } |
| 498 | |
| 499 | // content returns the source for the provided tree-sitter |
| 500 | // node, checking if the node is nil first. |
no outgoing calls
no test coverage detected