newrelic
Version:
New Relic agent
17 lines (14 loc) • 378 B
JavaScript
/*
* Copyright 2022 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
const instrumentation = require('./index')
const InstrumentationDescriptor = require('../../instrumentation-descriptor')
module.exports = [
{
type: InstrumentationDescriptor.TYPE_GENERIC,
moduleName: 'when',
onRequire: instrumentation
}
]