(err: any, data?: any)
| 31 | |
| 32 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 33 | export function log(err: any, data?: any) { |
| 34 | if (data) console.log(data); |
| 35 | if (err) core.error(err); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Matches the given string to an array of arguments. |