react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
12 lines (9 loc) • 304 B
JavaScript
;
var isObject = require('../internals/is-object');
var $String = String;
var $TypeError = TypeError;
// `Assert: Type(argument) is Object`
module.exports = function (argument) {
if (isObject(argument)) return argument;
throw new $TypeError($String(argument) + ' is not an object');
};