Created
August 9, 2016 21:26
-
-
Save raineorshine/d10603abf882cf53936def8bf3355486 to your computer and use it in GitHub Desktop.
Convert Solidity function calls to camelCase
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Find: function ([A-Z]) | |
Replace: function \l\1 | |
Find: \.(.)([^(\n]*)\( | |
Replace: .\l\1\2( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment