fix(core): update

This commit is contained in:
2021-10-04 22:02:47 +02:00
parent 1fd2bb8e01
commit 098a9c64c6
7 changed files with 17256 additions and 2842 deletions

View File

@@ -33,7 +33,7 @@ export class GitlabAccount {
});
// lets deal with pagination headers
const findLinkName = (markup) => {
const findLinkName = (markup: string) => {
const pattern = /<([^\s>]+)(\s|>)+/;
return markup.match(pattern)[1];
};