UNPKG

panjareh

Version:

Panjareh using aparat and phoenix-video-player to play videos on desktops and tvs.

12 lines (9 loc) 216 B
/** * Simple object check. * @param value * @returns {boolean} */ export default function isObject(value) { const type = typeof value; return value !== null && type === "object" && !Array.isArray(value); }