(def)
| 7 | // Taken from klasse by mattdesl https://github.com/mattdesl/klasse |
| 8 | |
| 9 | function hasGetterOrSetter (def) |
| 10 | { |
| 11 | return (!!def.get && typeof def.get === 'function') || (!!def.set && typeof def.set === 'function'); |
| 12 | } |
| 13 | |
| 14 | function getProperty (definition, k, isClassDescriptor) |
| 15 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…