File size: 203 Bytes
19605ab
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
var strftime = require('./strftime.js');

var testDate = function() {
  for(var i = 0; i < 1000; i++){
    var dateTime = strftime("%Y-%m-%d %H:%M:%S:%L");
    console.log(dateTime);
  }
};

testDate();