Wolfgang Huß 41ecc2df9e Translate and make it reactive
- Simplify coding of styles.
2023-01-05 15:46:24 +01:00

6 lines
120 B
JavaScript

export const objectValuesToArray = (obj) => {
return Object.keys(obj).map(function (key) {
return obj[key]
})
}