mirror of
https://github.com/JonasunderscoreJones/jonas_jones-api.git
synced 2025-10-23 17:19:18 +02:00
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
'use strict';
|
|
|
|
module.exports = function isAsyncFunction(v) {
|
|
return (
|
|
typeof v === 'function' &&
|
|
v.constructor &&
|
|
v.constructor.name === 'AsyncFunction'
|
|
);
|
|
};
|