Skip to content

Commit

Permalink
Script updating archive at 2023-11-23T00:03:37Z. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
ID Bot committed Nov 23, 2023
1 parent 9f30ae1 commit 151ca1f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion archive.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"magic": "E!vIA5L86J2I",
"timestamp": "2023-11-21T00:04:03.399616+00:00",
"timestamp": "2023-11-23T00:03:36.541786+00:00",
"repo": "anr-bmbf-pivot/draft-lenders-dns-cns",
"labels": [
{
Expand Down
23 changes: 20 additions & 3 deletions issues.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ async function get() {
throw new Error(`Error loading <${url}>: ${response.status}`);
}
db = await response.json();
db.pulls ??= [];
db.pulls.forEach(pr => pr.pr = true);
subset = db.all = db.issues.concat(db.pulls);
db.labels = db.labels.reduce((all, l) => {
Expand Down Expand Up @@ -316,9 +317,25 @@ class Parser {

parseString() {
let end = -1;
this.skipws();

let bs = false;
let quot = this.next === '"' || this.next === '\'';
let quotchar = this.next;
if (quot) { this.jump(1); }

for (let i = 0; i < this.str.length; ++i) {
let v = this.str.charAt(i);
if (v === ')' || v === ',') {
if (bs) {
bs = false;
continue;
}
if (v === '\\') {
bs = true;
continue;
}
if ((quot && v === quotchar) ||
(!quot && (v === ')' || v === ','))) {
end = i;
break;
}
Expand All @@ -327,8 +344,8 @@ class Parser {
throw new Error(`Unterminated string`);
}
let s = this.str.slice(0, end).trim();
this.jump(end);
return s;
this.jump(end + (quot ? 1 : 0));
return s.replace(/\\([\\"'])/g, '$1');
}

parseDate() {
Expand Down

0 comments on commit 151ca1f

Please sign in to comment.