UNPKG

@splidejs/svelte-splide

Version:

Svelte component for the Splide slider/carousel.

11 lines (10 loc) 283 B
/** * Checks if the given subject is an object or not. * * @param subject - A subject to check. * * @return `true` if the subject is an object, or otherwise `false`. */ export function isObject(subject) { return subject !== null && typeof subject === 'object'; }