Lorenzob's picture
Upload folder using huggingface_hub
19605ab verified
raw
history blame
203 Bytes
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();