1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/problems/js/check-if-object-instance-of-class.js
2023-06-03 20:28:52 +02:00

16 lines
356 B
JavaScript

/**
* @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
*/