astro-ghostcms/.pnpm-store/v3/files/d7/366ab38d497acd94c7c17e3a03a...

10 lines
244 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
var functionName = require('function.prototype.name');
var anon = functionName(function () {});
module.exports = function isAbstractClosure(x) {
return typeof x === 'function' && (!x.prototype || functionName(x) === anon);
};