forked from daren.hsu/line_push
7 lines
94 B
JavaScript
7 lines
94 B
JavaScript
export function extend (a, b) {
|
|
for (const key in b) {
|
|
a[key] = b[key]
|
|
}
|
|
return a
|
|
}
|