IsBooleanPrimitive returns true if the object with a given name is a javascript primitive boolean, false otherwise
(name string)
| 166 | // IsBooleanPrimitive returns true if the object with a |
| 167 | // given name is a javascript primitive boolean, false otherwise |
| 168 | func (p *Plugin) IsBooleanPrimitive(name string) bool { |
| 169 | return p.GetTypeObject(name) == "BooleanPrimitive" |
| 170 | } |
| 171 | |
| 172 | // IsNumberPrimitive returns true if the object with a |
| 173 | // given name is a javascript primitive number, false otherwise |
nothing calls this directly
no test coverage detected