(message: string)
| 1 | import { get } from '../helpers'; |
| 2 | |
| 3 | const getArgsToParse = (message: string): string[] => |
| 4 | message.match(/{{[^{}][\w\.]*}}/g); |
| 5 | |
| 6 | const getArgPath = (arg: string): string => arg.replace(/[{}]/g, ''); |
| 7 |
no outgoing calls
no test coverage detected
searching dependent graphs…