lintspec-core 0.17.0

Core library for lintspec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;

/// @title StringUtils
library StringUtils {
    function nothing(string memory input) public pure returns (string memory) {
        return input;
    }
}

contract BasicSample {
    using StringUtils for string;
}