UNPKG

@pryv/boiler

Version:

Logging and config boilerplate library for Node.js apps and services at Pryv

12 lines (10 loc) 256 B
/** * @license * [BSD-3-Clause](https://github.com/pryv/pryv-boiler/blob/master/LICENSE) */ module.exports = async function () { await new Promise(resolve => setTimeout(resolve, 100)); return { 'extra-js-async': 'extra-js-async loaded' }; };