Skip to content

Commit

Permalink
Merge pull request #1 from talis/PLT-34-Fix
Browse files Browse the repository at this point in the history
PLT- 34 Remove X variable
  • Loading branch information
malcyL authored Mar 14, 2024
2 parents 13c310a + eed007e commit 004776d
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("|") + ")$");
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 004776d

Please sign in to comment.