2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-11 00:22:25 +03:00

chore: remove unnecessary else in mergeDataInResult

This commit is contained in:
adrienbaron
2018-09-06 15:26:08 +02:00
parent ad4d61c38f
commit eacad9ac04
+1 -2
View File
@@ -72,7 +72,6 @@ function mergeDataInResult (data, result, component, arrayMerge) {
if (typeof data === 'object') {
// merge with existing options
return deepmerge(result, data, { arrayMerge })
} else {
return data
}
return data
}