* Returns the first property of an object * @param {object} object - the object to get the first member * @return {string} - the object key
(object)
| 3690 | * @return {string} - the object key |
| 3691 | */ |
| 3692 | first(object) { |
| 3693 | return Object.keys(object).shift(); |
| 3694 | } |
| 3695 | |
| 3696 | /** |
| 3697 | * Returns the last property of an object |
no outgoing calls
no test coverage detected