Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36
Chrome 102
Windows
Desktop
2 years ago
Test name Executions per second
getOwnPropertyNames 183718.3 Ops/sec
getOwnPropertyDescriptors 90338.9 Ops/sec
Tests:
  • getOwnPropertyNames

    x
     
    function objectProperties(object, result = {}) {
      let proto = object;
      while ((proto = Object.getPrototypeOf(proto)) !== Object.prototype) {
        for(const name of Object.getOwnPropertyNames(proto)) {
          result[name] = name;
        }
      }
      return result;
    }
    objectProperties(new MediaSource());
  • getOwnPropertyDescriptors

     
    function objectProperties(object, result = {}) {
      let proto = object;
      while ((proto = Object.getPrototypeOf(proto)) !== Object.prototype) {
        for(const descriptor in Object.getOwnPropertyDescriptors(proto)) {
          result[descriptor] = descriptor;
        }
      }
      return result;
    }
    objectProperties(new MediaSource());