UNPKG

@skybloxsystems/ticket-bot

Version:
11 lines (8 loc) 203 B
'use strict'; const { inspect } = require('util'); module.exports = function isAsyncFunction(v) { if (typeof v !== 'function') { return; } return inspect(v).startsWith('[AsyncFunction:'); };