()
| 238 | } |
| 239 | |
| 240 | func (t *TEvent) ConvertRawJSON() error { |
| 241 | if t.RawProps != "" { |
| 242 | return json.Unmarshal([]byte(t.RawProps), &t.Props) |
| 243 | } |
| 244 | return nil |
| 245 | } |
| 246 | |
| 247 | var eventNameRe = regexp.MustCompile(`^[a-zA-Z0-9.:_/-]+$`) |
| 248 |
no outgoing calls
no test coverage detected