Last active
April 9, 2024 10:16
-
-
Save jjherscheid/b766d8016baba2dc54b2829ab37467fc to your computer and use it in GitHub Desktop.
Check is object matches expected interface in Javascript
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
/** | |
* Check if object matches interface including type of property | |
* Nested propertys not supported for now | |
*/ | |
function checkInterface(originalObject, interfaceObject, disableTypeChecking) { | |
for (var key in interfaceObject) { | |
// If original object does not contain property of interface | |
if (!originalObject.hasOwnProperty(key)) { | |
return false; | |
} | |
// If original object property type does not equal interface object type | |
// disableTypeChecking if originalObject can contain properties with value null/undefined and your | |
// interface does not have null/undefined property | |
if (!disableTypeChecking && typeof originalObject[key] !== typeof interfaceObject[key]) { | |
return false; | |
} | |
} | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment