Skip to content

Commit

Permalink
text action fail
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-baumberger committed Oct 17, 2023
1 parent 03a7ea3 commit cb4b627
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ export interface KeyValuePair {
}

export function trimSeperatorSpaces(string: string) {
return string.replace(/([^\S\r\n]*[|][^\S\r\n]*)/g, "|");
return string;
//return string.replace(/([^\S\r\n]*[|][^\S\r\n]*)/g, "|");
}

export function collectAllKeys(input: unknown[]): string[] {
Expand Down

0 comments on commit cb4b627

Please sign in to comment.