{
    "Function": "appendString",
    "File": "contracts/lib/Strings.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodePacked()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function appendString(string memory str1, string memory str2) public pure returns (string memory result) {\n        return string(abi.encodePacked(str1,str2));\n    }"
}