Skip to content

Commit

Permalink
fix: lint whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Dec 30, 2021
1 parent 8b710dc commit 3426463
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/wallet/api/src/findOrMakeInvitation.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ const assertFirstCapASCII = str => {
const firstCapASCII = /^[A-Z][a-zA-Z0-9_$]*$/;
assert(
firstCapASCII.test(str),
X`The string ${q(str)} must be an ascii identifier starting with upper case.`,
X`The string ${q(
str,
)} must be an ascii identifier starting with upper case.`,
);
assert(
str !== 'NaN' && str !== 'Infinity',
Expand Down

0 comments on commit 3426463

Please sign in to comment.