Unescape unescapes a json pointer reference token string to the original representation.
(token string)
| 751 | |
| 752 | // Unescape unescapes a json pointer reference token string to the original representation. |
| 753 | func Unescape(token string) string { |
| 754 | return encRefTokReplacer.Replace(token) |
| 755 | } |
| 756 | |
| 757 | // Escape escapes a pointer reference token string. |
| 758 | // |
no outgoing calls
searching dependent graphs…