We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When comparing 2 objects using the module, IE (11) returns an error whilst Chrome and Firefox do not and execute normally.
ReferenceError: 'Map' is undefined
Usage of the module:
return !equals(obj1, obj2);
where obj1 and obj2 look as follows (if they're not null):
obj1
obj2
null
{ prop1: null | { prop1: null | int, prop2: null | string, prop3: null | boolean, prop4: null | string }, prop2: same as prop1 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When comparing 2 objects using the module, IE (11) returns an error whilst Chrome and Firefox do not and execute normally.
ReferenceError: 'Map' is undefined
Usage of the module:
return !equals(obj1, obj2);
where
obj1
andobj2
look as follows (if they're notnull
):The text was updated successfully, but these errors were encountered: