Closed jclay closed 7 years ago
The default date handler includes a comma, which can make the CSV output look off by one or more depending on the number of dates in your object.
> var now = new Date; > now.toLocaleString(); => "12/3/2016, 7:06:48 PM" // compare to > var now = new Date; => "12/3/2016"
The downside is the default handler will not include time, but the user can override by configuring a custom method in options.
options
The default date handler includes a comma, which can make the CSV output look off by one or more depending on the number of dates in your object.
The downside is the default handler will not include time, but the user can override by configuring a custom method in
options
.