DecodedString returns a fully decoded version of a JavaScript string. It is just a convenience wrapper around the DecodeString function.
()
| 211 | // JavaScript string. It is just a convenience wrapper |
| 212 | // around the DecodeString function. |
| 213 | func (n *Node) DecodedString() string { |
| 214 | return DecodeString(n.Content()) |
| 215 | } |
| 216 | |
| 217 | // AsGoType returns a representation of a Node as a native |
| 218 | // Go type, defaulting to a string containing the JavaScript |
no test coverage detected