Add production dependencies & build

This commit is contained in:
Sascha Mann
2019-11-20 20:01:49 +01:00
parent 67ef5af2fd
commit e23d9abea3
620 changed files with 136417 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
const urlVariableRegex = /\{[^}]+\}/g;
function removeNonChars(variableName) {
return variableName.replace(/^\W+|\W+$/g, "").split(/,/);
}
export function extractUrlVariableNames(url) {
const matches = url.match(urlVariableRegex);
if (!matches) {
return [];
}
return matches.map(removeNonChars).reduce((a, b) => a.concat(b), []);
}