duct-framework / module.web

Duct module for running web applications
21 stars 19 forks source link

Fix deep-merge recursive case #6

Closed jaydeesimon closed 6 years ago

jaydeesimon commented 6 years ago

I was browsing through the code and noticed that the deep-merge function was checking if a is a map and if (map b) (the transducer) is truthy which I think is always going to be true but correct me if I'm wrong, I think it's supposed to be checking if b is also a map.

weavejester commented 6 years ago

Ah, thanks! You're right, this is a typo.