Current Path : /home/infinitibizsol/.trash/node_modules.5/cloudinary/lib-es5/utils/ |
Current File : /home/infinitibizsol/.trash/node_modules.5/cloudinary/lib-es5/utils/entries.js |
"use strict"; module.exports = Object.entries ? Object.entries : function (obj) { var ownProps = Object.keys(obj), i = ownProps.length, resArray = new Array(i); // preallocate the Array while (i--) { resArray[i] = [ownProps[i], obj[ownProps[i]]]; } return resArray; };