(name string)
| 74 | } |
| 75 | |
| 76 | func (o *objectGoMapSimple) _hasStr(name string) bool { |
| 77 | _, exists := o.data[name] |
| 78 | return exists |
| 79 | } |
| 80 | |
| 81 | func (o *objectGoMapSimple) hasOwnPropertyStr(name unistring.String) bool { |
| 82 | return o._hasStr(name.String()) |
no outgoing calls
no test coverage detected