UNPKG
wechat-bot
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.1.1
0.1.0
0.0.1
middleware framework for creating wechat bot
github.com/rogerz/wechat-bot
rogerz/wechat-bot
wechat-bot
/
lib
/
utils.js
9 lines
(8 loc)
•
123 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
exports
.
merge
=
function
(
a, b
) {
if
(a && b) {
for
(
var
key
in
b) { a[key] = b[key]; } }
return
a; };