UNPKG

jodit

Version:

Jodit is awesome and usefully wysiwyg editor with filebrowser

7 lines 141 B
/** * Always return Array * * @param a * @return {Array} */ export const asArray = <T>(a: T[] | T): T[] => (Array.isArray(a) ? a : [a]);