(self, array, first, second=None)
| 2031 | return value is not None |
| 2032 | |
| 2033 | def array_slice(self, array, first, second=None): |
| 2034 | return array[first:second] if second else array[first:] |
| 2035 | |
| 2036 | def get_property(self, obj, property, defaultValue=None): |
| 2037 | return getattr(obj, property) if hasattr(obj, property) else defaultValue |
no outgoing calls
no test coverage detected