* Gets the maximum key form object * @param {object} object - the object to get the properties form * @return {string} - the minimum key
(object)
| 3728 | * @return {string} - the minimum key |
| 3729 | */ |
| 3730 | max(object) { |
| 3731 | // eslint-disable-next-line prefer-spread |
| 3732 | return Math.max.apply(Math, Object.keys(object)); |
| 3733 | } |
| 3734 | |
| 3735 | /** |
| 3736 | * Sets an option given a key and value |
no outgoing calls
no test coverage detected