(inputString: string)
| 55 | export const DEFAULT_ABI_DIR = '/abis'; |
| 56 | |
| 57 | export function removeKeyword(inputString: string): string { |
| 58 | return inputString.replace(/^(event|function) /, ''); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Copies the provided ABI file to the default ABI directory in the project root. |
no outgoing calls
no test coverage detected