File size: 325 Bytes
19605ab
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env node

var strftime = require('./strftime.js');
var dates = [
    '01-01-2017 00:00:00',
    '03-25-2017 00:00:00',
    '03-26-2017 00:00:00',
    '03-27-2017 00:00:00',
    '04-02-2017 00:00:00',
];
dates.forEach(function(d) {
    console.log('strftime(%U, "' + d + '") = ' + strftime('%U', new Date(d)));
});