IsDateObject returns true if the object with a given name is a javascript Date object, false otherwise
(name string)
| 202 | // IsDateObject returns true if the object with a |
| 203 | // given name is a javascript Date object, false otherwise |
| 204 | func (p *Plugin) IsDateObject(name string) bool { |
| 205 | return p.GetTypeObject(name) == "DateObject" |
| 206 | } |
| 207 | |
| 208 | // IsRegExpObject returns true if the object with a |
| 209 | // given name is a javascript RegExp object, false otherwise |
nothing calls this directly
no test coverage detected