UNPKG

typeit

Version:

The most versatile animated typing utility on the planet.

7 lines (5 loc) 187 B
import isArray from "./isArray"; /** * Converts value as within array, unless the value itself already is one. */ export default <T>(value): T[] => (isArray(value) ? value : [value]);