(date)
| 275 | } |
| 276 | |
| 277 | function stringDate(date) { |
| 278 | return pad(date.getDate()) + '/' + pad(date.getMonth() + 1) + '/' + date.getFullYear() + |
| 279 | ' @ ' + pad(date.getHours()) + ':' + pad(date.getMinutes()) + ':' + pad(date.getSeconds()); |
| 280 | } |
| 281 | |
| 282 | // NOTE: these tests are currently timezone dependent |
| 283 | it('should recognize timestamps', function () { |