IsArrayObject returns true if the object with a given name is a javascript array object, false otherwise
(name string)
| 178 | // IsArrayObject returns true if the object with a |
| 179 | // given name is a javascript array object, false otherwise |
| 180 | func (p *Plugin) IsArrayObject(name string) bool { |
| 181 | return p.GetTypeObject(name) == "ArrayObject" |
| 182 | } |
| 183 | |
| 184 | // IsStringObject returns true if the object with a |
| 185 | // given name is a javascript string object, false otherwise |
nothing calls this directly
no test coverage detected