'use strict'/* c8 ignore next */constAsyncFunctionConstructor = (async () => {}).constructor/**
* A function that returns true if the given function is an async function.
*/constisAsyncFunction = (fn) => fn.constructor === AsyncFunctionConstructormodule.exports = {
isAsyncFunction
}