Created
December 26, 2012 05:56
-
-
Save bhattisatish/4378251 to your computer and use it in GitHub Desktop.
Is a function a constructor or not?
Original src https://github.com/Benvie/Node.js-Ultra-REPL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isConstructor(o){ | |
return typeof o === 'function' // per ES spec any callable is typed 'function' | |
&& o.prototype != null // filter out absent prototypes | |
&& (typeof o.prototype === 'object' // filter out primitive prototypes | |
|| typeof o.prototype === 'function') | |
&& Object.getPrototypeOf(o) !== Object.prototype // filter out non-constructable DOM interfaces | |
&& Object.getOwnPropertyNames(o.prototype).length > // ensure the prototype has at least one property | |
{}.hasOwnProperty.call(o.prototype, 'constructor'); // ...besides 'constructor' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment