Files
line_push/node_modules/vue-router/src/util/misc.js
T
darenhsu befd344ab0 add file
2022-07-17 13:16:16 +08:00

7 lines
94 B
JavaScript

export function extend (a, b) {
for (const key in b) {
a[key] = b[key]
}
return a
}