IsBooleanObject returns true if the object with a given name is a javascript boolean object, false otherwise
(name string)
| 190 | // IsBooleanObject returns true if the object with a |
| 191 | // given name is a javascript boolean object, false otherwise |
| 192 | func (p *Plugin) IsBooleanObject(name string) bool { |
| 193 | return p.GetTypeObject(name) == "BooleanObject" |
| 194 | } |
| 195 | |
| 196 | // IsNumberObject returns true if the object with a |
| 197 | // given name is a javascript Number object, false otherwise |
nothing calls this directly
no test coverage detected