FLUJOS/BACK_BACK/node_modules/mongoose/lib/helpers/isAsyncFunction.js
2025-11-07 00:06:12 +01:00

9 lines
176 B
JavaScript
Executable file

'use strict';
module.exports = function isAsyncFunction(v) {
return (
typeof v === 'function' &&
v.constructor &&
v.constructor.name === 'AsyncFunction'
);
};