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