Skip to content

Instantly share code, notes, and snippets.

@jjherscheid
Last active April 9, 2024 10:16
Show Gist options
  • Save jjherscheid/b766d8016baba2dc54b2829ab37467fc to your computer and use it in GitHub Desktop.
Save jjherscheid/b766d8016baba2dc54b2829ab37467fc to your computer and use it in GitHub Desktop.
Check is object matches expected interface in Javascript
/**
* 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