mirror of
https://github.com/Ssl1S/json-schema-editor-vue.git
synced 2025-12-30 09:47:54 +08:00
5 lines
81 B
JavaScript
5 lines
81 B
JavaScript
export function clearAttr(obj) {
|
|
for(let key in obj){
|
|
delete obj[key]
|
|
}
|
|
} |