UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

7 lines (5 loc) 258 B
'use strict'; /** @type {(value: unknown) => value is null | undefined | string | symbol | number | boolean | bigint} */ module.exports = function isPrimitive(value) { return value === null || (typeof value !== 'function' && typeof value !== 'object'); };