UNPKG

@indiekit/frontend

Version:

Frontend components for Indiekit

7 lines (6 loc) 171 B
/** * Check if value is an array * @param {*} value - Value to check * @returns {boolean} Value is an array */ export const isArray = (value) => Array.isArray(value);