IsRegExpObject returns true if the object with a given name is a javascript RegExp object, false otherwise
(name string)
| 208 | // IsRegExpObject returns true if the object with a |
| 209 | // given name is a javascript RegExp object, false otherwise |
| 210 | func (p *Plugin) IsRegExpObject(name string) bool { |
| 211 | return p.GetTypeObject(name) == "RegExpObject" |
| 212 | } |
| 213 | |
| 214 | // IsErrorObject returns true if the object with a |
| 215 | // given name is a javascript error object, false otherwise |
nothing calls this directly
no test coverage detected