* Basic getter * @param {String} property Property name * @return {*} value of a property
(property: string)
| 57 | * @return {*} value of a property |
| 58 | */ |
| 59 | get(property: string): any { |
| 60 | return this[property as keyof this]; |
| 61 | } |
| 62 | } |
no outgoing calls
no test coverage detected