react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
18 lines (12 loc) • 305 B
JavaScript
var define = require('define-properties');
var getPolyfill = require('./polyfill');
module.exports = function shim() {
var polyfill = getPolyfill();
define(
Object,
{ groupBy: polyfill },
{ groupBy: function () { return Object.groupBy !== polyfill; } }
);
return polyfill;
};
;