Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/helperGetHGSKeys.js

7 lines
283 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
function helperGetHGSKeys (property) {
// 以最快的方式判断数组,可忽略准确性
return property ? (property.splice && property.join ? property : ('' + property).replace(/(\[\d+\])\.?/g,'$1.').replace(/\.$/, '').split('.')) : []
}
module.exports = helperGetHGSKeys