new toolkit and scoped registries

This commit is contained in:
Danny McCormick 2019-08-05 15:18:52 -04:00
parent a9f1343a9a
commit feb12fe291
403 changed files with 81577 additions and 1990 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), []);
}