{
    "Function": "isContract",
    "File": "contracts/oz/utils/Address.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "code(address)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function isContract(address account) internal view returns (bool) {\n        // This method relies on extcodesize/address.code.length, which returns 0\n        // for contracts in construction, since the code is only stored at the end\n        // of the constructor execution.\n\n        return account.code.length > 0;\n    }"
}