{
    "Function": "truncate",
    "File": "contracts/libraries/Base58Encoder.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function truncate(uint8[] memory array, uint8 length) internal pure returns (uint8[] memory) {\n        uint8[] memory output = new uint8[](length);\n        for (uint256 i = 0; i < length; i++) {\n            output[i] = array[i];\n        }\n        return output;\n    }"
}