Urara-Blog/node_modules/.pnpm-store/v3/files/d7/366ab38d497acd94c7c17e3a03adb90c1ab0ddd8a52d1595d2dc29dc6d669f9eeb0481cb6f69047115413f2dd4c652d43e107f4084baca7c8a09855990e4db
2022-08-14 01:14:53 +08:00

9 lines
244 B
Text

'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);
};