?? GreyFile — Mystic File Browser

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

?? Viewing: parse-choices.js

export const maybeTransformUnorderedChoices = choices =>
	Array.isArray(choices)
		? choices
		: Object.keys(choices).reduce(
				(current, choice) => [
					...current,
					{
						key: choice,
						value: choices[choice]
					}
				],
				[]
			)


??

??