Skip to content

Commit

Permalink
Remove X variable
Browse files Browse the repository at this point in the history
  • Loading branch information
malcyL committed Mar 14, 2024
1 parent 1f243b2 commit eed007e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/citeproc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14381,7 +14381,6 @@ CSL.parseParticles = function(){
REX.family = new RegExp("^((?:" + LIST.family.space.join("|") + ")(\\s+)|(?:" + LIST.family.nospace.join("|") + "([^\\s]))).*", "i");
REX.given.full_comma = new RegExp(".*?(,[\\s]*)(" + LIST.given.full.join("|") + ")$", "i");
REX.given.full_lower = new RegExp(".*?([ ]+)(" + LIST.given.full.join("|") + ")$");
var X = "Tom du".match(REX.given.full_lower)
var allInTheFamily = LIST.family.space
for (var key in LIST.given.partial) {
REX.given.partial[key] = new RegExp(".*?(\\s+)(" + LIST.given.partial[key].join("|") + ")$", "i");
Expand Down

0 comments on commit eed007e

Please sign in to comment.