Closed jeffijoe closed 6 years ago
Fixes #47 by checking whether the element is instanceof Date.
instanceof Date
The problem was that typeof elem would be object for Dates, which Bristol would then attempt to merge.
typeof elem
object
Date
What a great catch-- released in 0.4.0. Thanks!
Fixes #47 by checking whether the element is
instanceof Date
.The problem was that
typeof elem
would beobject
forDate
s, which Bristol would then attempt to merge.