sandbox-node/pbf/index.js

12 lines
185 B
JavaScript

const debug=require('debug')('pbf');
run().catch(err => {
debug('run: error')
console.log(err)
});
async function run() {
debug('run started...')
debug('run done.')
}