IsNumberObject returns true if the object with a given name is a javascript Number object, false otherwise
(name string)
| 196 | // IsNumberObject returns true if the object with a |
| 197 | // given name is a javascript Number object, false otherwise |
| 198 | func (p *Plugin) IsNumberObject(name string) bool { |
| 199 | return p.GetTypeObject(name) == "NumberObject" |
| 200 | } |
| 201 | |
| 202 | // IsDateObject returns true if the object with a |
| 203 | // given name is a javascript Date object, false otherwise |
nothing calls this directly
no test coverage detected