import { is } from '../../lib/type' export const arrayfy = (value: T | T[]) => is.array(value) ? value : [value]