* Returns an array of properties starting at start * @param {object} object - the object to get the properties form * @param {int} start - the starting index * @return {array} - the array of entires
(object, start = 0)
| 3709 | * @return {array} - the array of entires |
| 3710 | */ |
| 3711 | slice(object, start = 0) { |
| 3712 | return Object.keys(object).slice(start); |
| 3713 | } |
| 3714 | |
| 3715 | /** |
| 3716 | * Gets the minimum key form object |
no outgoing calls
no test coverage detected