export default function (value?: string): string[] {
  return value ? [value] : [];
}
