We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5fa2557 + 1d5d960 commit 09f9d33Copy full SHA for 09f9d33
libs/shared/src/utils/output.helpers.ts
@@ -148,17 +148,3 @@ export function getRecordFormat(chunkFormat: string) {
148
chunkFormat: JSON.stringify(format),
149
};
150
}
151
-
152
-export function extractExtraSystemVariables(format: string): string[] {
153
- const variablePattern = /\{\{([^}]+)\}\}/g;
154
- const variables: string[] = [];
155
- let match;
156
157
- while ((match = variablePattern.exec(format)) !== null) {
158
- variables.push(match[1]);
159
- }
160
161
- const systemVariables = variables.filter((variable) => variable.startsWith('extra.'));
162
163
- return systemVariables;
164
-}
0 commit comments