Lobashov_Ivan_PIBD-21_IP/Lab3/node_modules/es-abstract/helpers/isAbstractClosure.js
2024-01-10 22:39:31 +04: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);
};