cletus/node_modules/@dabh/diagnostics/adapters/index.js
2025-05-09 15:53:19 -05:00

18 lines
401 B
JavaScript

var enabled = require('enabled');
/**
* Creates a new Adapter.
*
* @param {Function} fn Function that returns the value.
* @returns {Function} The adapter logic.
* @public
*/
module.exports = function create(fn) {
return function adapter(namespace) {
try {
return enabled(namespace, fn());
} catch (e) { /* Any failure means that we found nothing */ }
return false;
};
}