IsNumberPrimitive returns true if the object with a given name is a javascript primitive number, false otherwise
(name string)
| 172 | // IsNumberPrimitive returns true if the object with a |
| 173 | // given name is a javascript primitive number, false otherwise |
| 174 | func (p *Plugin) IsNumberPrimitive(name string) bool { |
| 175 | return p.GetTypeObject(name) == "NumberPrimitive" |
| 176 | } |
| 177 | |
| 178 | // IsArrayObject returns true if the object with a |
| 179 | // given name is a javascript array object, false otherwise |
nothing calls this directly
no test coverage detected