Newer
Older
smart_construction / miniprogram / miniprogram_npm / @vant / weapp / wxs / object.wxs
zhout on 27 May 2020 249 bytes Initial Commit
/* eslint-disable */
var REGEXP = getRegExp('{|}|"', 'g');

function keys(obj) {
  return JSON.stringify(obj)
    .replace(REGEXP, '')
    .split(',')
    .map(function(item) {
      return item.split(':')[0];
    });
}

module.exports.keys = keys;