import PropTypes from 'prop-types'; /** * Converts a value into an Array. * * @param {any} value - The value to convert. * * @return {array} - The Array interpretation of the value. */ export function asArray(value: value): Array { return Array.isArray(value) ? value : [value]; }