react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
12 lines (9 loc) • 354 B
JavaScript
;
var isCallable = require('../internals/is-callable');
var tryToString = require('../internals/try-to-string');
var $TypeError = TypeError;
// `Assert: IsCallable(argument) is true`
module.exports = function (argument) {
if (isCallable(argument)) return argument;
throw new $TypeError(tryToString(argument) + ' is not a function');
};