object.wxs 249 B

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