Skip to content

Commit e2d5762

Browse files
committed
chore: update dependencies
1 parent bf090b5 commit e2d5762

4 files changed

Lines changed: 89 additions & 41 deletions

File tree

lib/internals/querystring.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ function encodeString(str) {
6464
lastPos = i + 1;
6565
out +=
6666
hexTable[0xE0 | (c >> 12)] +
67-
hexTable[0x80 | ((c >> 6) & 0x3F)] +
68-
hexTable[0x80 | (c & 0x3F)];
67+
hexTable[0x80 | ((c >> 6) & 0x3F)] +
68+
hexTable[0x80 | (c & 0x3F)];
6969
continue;
7070
}
7171
// Surrogate pair
@@ -82,9 +82,9 @@ function encodeString(str) {
8282
c = 0x10000 + (((c & 0x3FF) << 10) | c2);
8383
out +=
8484
hexTable[0xF0 | (c >> 18)] +
85-
hexTable[0x80 | ((c >> 12) & 0x3F)] +
86-
hexTable[0x80 | ((c >> 6) & 0x3F)] +
87-
hexTable[0x80 | (c & 0x3F)];
85+
hexTable[0x80 | ((c >> 12) & 0x3F)] +
86+
hexTable[0x80 | ((c >> 6) & 0x3F)] +
87+
hexTable[0x80 | (c & 0x3F)];
8888
}
8989
if (lastPos === 0) return str;
9090
if (lastPos < len) return out + str.slice(lastPos);

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"node": ">= 15.0.0"
99
},
1010
"scripts": {
11-
"format": "rome format . --indent-style space --write",
12-
"format:ci": "rome ci . --indent-style space",
11+
"format": "rome format . --write",
12+
"format:ci": "rome format .",
1313
"test": "vitest",
1414
"test:watch": "vitest --watch",
1515
"coverage": "vitest run --coverage",
@@ -24,12 +24,12 @@
2424
"author": "Yagiz Nizipli <yagiz@nizipli.com>",
2525
"license": "MIT",
2626
"devDependencies": {
27-
"@types/node": "^18.7.14",
27+
"@types/node": "^18.7.15",
2828
"cronometro": "^1.1.2",
2929
"qs": "^6.11.0",
3030
"query-string": "^7.1.1",
31-
"rome": "0.8.0-next.ff4153b",
32-
"vitest": "^0.22.1"
31+
"rome": "0.9.0-next",
32+
"vitest": "^0.23.1"
3333
},
3434
"repository": {
3535
"url": "git+https://github.com/anonrig/fast-querystring.git",

pnpm-lock.yaml

Lines changed: 70 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rome.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"formatter": {
3+
"indentStyle": "space",
4+
"indentSize": 2
5+
},
6+
"linter": {
7+
"enabled": false
8+
}
9+
}

0 commit comments

Comments
 (0)