1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 11:18:42 +08:00

fix[Utils]: fixed deepClone error msg (#1748)

This commit is contained in:
Yuga Sun 2019-03-21 15:14:15 +08:00 committed by 花裤衩
parent 63dba8b7d8
commit ae6bbf7858

View File

@ -274,7 +274,7 @@ export function debounce(func, wait, immediate) {
*/
export function deepClone(source) {
if (!source && typeof source !== 'object') {
throw new Error('error arguments', 'shallowClone')
throw new Error('error arguments', 'deepClone')
}
const targetObj = source.constructor === Array ? [] : {}
Object.keys(source).forEach(keys => {