mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
16 lines
356 B
JavaScript
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
|
|
*/
|