Files
GNX-mailEnterprise/frontend/node_modules/es-abstract/helpers/isAbstractClosure.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03: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);
};