Files
Housekeeping-web-admin/node_modules/es-abstract/helpers/isAbstractClosure.js
T
2026-06-24 09:48:54 +02:00

10 lines
244 B
JavaScript

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