{
    "Function": "notEq",
    "File": "contracts/test/Utils/StringEquality.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "eq"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function notEq(string memory a, string memory b) internal pure returns (bool) {\n        return !eq(a, b);\n    }"
}