I\'m looking for an alternative version for the Object.values() function. As described here the function is not supported in Internet Explorer.
Object.values()
When
Best way is to replace it with the values method of ramda:
import * as R from 'ramda'; const obj = { foo: 'bar', test: 10 }; console.log(R.values(obj)) // ['bar', 10]