PIbd-22_Kaznacheeva.E.K_Int.../lab2/node_modules/es-abstract/helpers/isAbstractClosure.js

10 lines
244 B
JavaScript
Raw Permalink Normal View History

2023-11-24 14:53:57 +04: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);
};