mirror of
https://github.com/rharkor/caching-for-turbo.git
synced 2025-06-08 01:37:01 +09:00
12 lines
353 B
JavaScript
Generated
12 lines
353 B
JavaScript
Generated
'use strict'
|
|
|
|
const pino = require('./pino')
|
|
const { once } = require('events')
|
|
|
|
module.exports = async function (opts = {}) {
|
|
const destOpts = Object.assign({}, opts, { dest: opts.destination || 1, sync: false })
|
|
delete destOpts.destination
|
|
const destination = pino.destination(destOpts)
|
|
await once(destination, 'ready')
|
|
return destination
|
|
}
|