sandbox-node/ary-this-week/index.js

16 lines
326 B
JavaScript
Raw Permalink Normal View History

2022-05-31 06:39:27 +02:00
const Debug=require('debug')('debug');
const AryThisWeek=require('./ary-this-week');
run().catch(err => {
Debug('run: error')
console.log(err)
});
async function run() {
Debug('run started...')
const thisWeek=AryThisWeek.getAryThisWeek(new Date());
Debug('thisWeek: '+thisWeek)
Debug('run done.')
}