cookie clicker but bigger
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
340 B

  1. if (!Object.entries) {
  2. console.log("Your browser doesn't support Object.entries()")
  3. Object.entries = function (obj) {
  4. var ownProps = Object.keys(obj),
  5. i = ownProps.length,
  6. resArray = new Array(i); // preallocate the Array
  7. while (i--)
  8. resArray[i] = [ownProps[i], obj[ownProps[i]]];
  9. return resArray;
  10. };
  11. }