object.sjs 228 B

12345678
  1. /* eslint-disable */
  2. var REGEXP = getRegExp('{|}|"', 'g');
  3. function keys(obj) {
  4. return JSON.stringify(obj).replace(REGEXP, '').split(',').map(function (item) {
  5. return item.split(':')[0];
  6. });
  7. }
  8. module.exports.keys = keys;