firstKey.js 132 B

12345678
  1. 'use strict';
  2. module.exports = function firstKey(obj) {
  3. if (obj == null) {
  4. return null;
  5. }
  6. return Object.keys(obj)[0];
  7. };