IsStringPrimitive returns true if the object with a given name is a javascript primitive string
(name string)
| 160 | // IsStringPrimitive returns true if the object with a |
| 161 | // given name is a javascript primitive string |
| 162 | func (p *Plugin) IsStringPrimitive(name string) bool { |
| 163 | return p.GetTypeObject(name) == "StringPrimitive" |
| 164 | } |
| 165 | |
| 166 | // IsBooleanPrimitive returns true if the object with a |
| 167 | // given name is a javascript primitive boolean, false otherwise |
nothing calls this directly
no test coverage detected