Checks if the given value is a constructor.
The value to check.
A boolean indicating whether the value is a constructor or not.
isConstructor(class {}); => trueisConstructor(function() {}); => trueisConstructor(() => {}); => false Copy
isConstructor(class {}); => trueisConstructor(function() {}); => trueisConstructor(() => {}); => false
Generated using TypeDoc
Checks if the given value is a constructor.