Current path: home/webdevt/www/cryptoimpot.fr/wp-content/themes/blocksy/static/js/options/helpers/
?? Go up: /home/webdevt/www/cryptoimpot.fr/wp-content/themes/blocksy/static/js/options
export const maybeTransformUnorderedChoices = choices =>
Array.isArray(choices)
? choices
: Object.keys(choices).reduce(
(current, choice) => [
...current,
{
key: choice,
value: choices[choice]
}
],
[]
)