{
    "Function": "abs",
    "File": "src/contracts/lib/LibMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function abs(int256 x) internal pure returns (int256) {\n        return x > 0 ? int256(x) : int256(-1 * x);\n    }"
}