react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
18 lines (15 loc) • 503 B
JavaScript
var RequireObjectCoercible = require('es-object-atoms/RequireObjectCoercible');
var callBound = require('call-bind/callBound');
var $isEnumerable = callBound('Object.prototype.propertyIsEnumerable');
var $push = callBound('Array.prototype.push');
module.exports = function entries(O) {
var obj = RequireObjectCoercible(O);
var entrys = [];
for (var key in obj) {
if ($isEnumerable(obj, key)) { // checks own-ness as well
$push(entrys, [key, obj[key]]);
}
}
return entrys;
};
;