IsStringObject returns true if the object with a given name is a javascript string object, false otherwise
(name string)
| 184 | // IsStringObject returns true if the object with a |
| 185 | // given name is a javascript string object, false otherwise |
| 186 | func (p *Plugin) IsStringObject(name string) bool { |
| 187 | return p.GetTypeObject(name) == "StringObject" |
| 188 | } |
| 189 | |
| 190 | // IsBooleanObject returns true if the object with a |
| 191 | // given name is a javascript boolean object, false otherwise |
nothing calls this directly
no test coverage detected