Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-abrioux committed Feb 6, 2023
1 parent 28a371e commit 0287382
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .yarn/releases/yarn-1.22.19.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -73555,9 +73555,9 @@ declare var __webpack_require__: mixed;

function isHexCode(c) {
return (
(0x30 /* 0 */ <= c && c <= 0x39 /* 9 */) ||
(0x41 /* A */ <= c && c <= 0x46 /* F */) ||
(0x61 /* a */ <= c && c <= 0x66 /* f */)
(0x30 /* 0 */ <= c && c <= 0x39) /* 9 */ ||
(0x41 /* A */ <= c && c <= 0x46) /* F */ ||
(0x61 /* a */ <= c && c <= 0x66) /* f */
);
}

Expand Down Expand Up @@ -143920,8 +143920,8 @@ util.inherits(module.exports.ISO_8859_7, sbcs);
var bucket = this._getEncodeBucket(uCode);
var low = uCode & 0xff;
if (bucket[low] <= SEQ_START)
this.encodeTableSeq[SEQ_START - bucket[low]][DEF_CHAR] =
dbcsCode; // There's already a sequence, set a single-char subsequence of it.
this.encodeTableSeq[SEQ_START - bucket[low]][DEF_CHAR] = dbcsCode;
// There's already a sequence, set a single-char subsequence of it.
else if (bucket[low] == UNASSIGNED) bucket[low] = dbcsCode;
};

Expand Down

0 comments on commit 0287382

Please sign in to comment.