1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00
LeetCode/js/check-if-object-instance-of-class.js

17 lines
356 B
JavaScript
Raw Normal View History

/**
* @param {any} obj
* @param {any} classFunction
* @return {boolean}
*/
var checkIfInstanceOf = function(obj, classFunction) {
if (obj === null || obj === undefined || typeof classFunction !== "function") {
return false;
}
return Object(obj) instanceof classFunction;
};
/**
* checkIfInstanceOf(new Date(), Date); // true
*/