| Current Path : /home/deltalab/PMS/sms-connector/node_modules/mongoose/lib/helpers/ |
| Current File : //home/deltalab/PMS/sms-connector/node_modules/mongoose/lib/helpers/isAsyncFunction.js |
'use strict';
const { inspect } = require('util');
module.exports = function isAsyncFunction(v) {
if (typeof v !== 'function') {
return;
}
return inspect(v).startsWith('[AsyncFunction:');
};