summaryrefslogtreecommitdiff
path: root/node_modules/@11ty/eleventy/src/Util/IsAsyncFunction.js
blob: 3c4dc6542c7f9ac56f8a2e261bd505c68dca6f4f (plain)
1
2
3
4
5
const ComparisonAsyncFunction = (async () => {}).constructor;

export default function isAsyncFunction(fn) {
	return fn instanceof ComparisonAsyncFunction;
}