Skip to content

Commit

Permalink
Merge pull request #36 from ynhhoJ/features/35
Browse files Browse the repository at this point in the history
✨ Return error instead of null/undefined variables
  • Loading branch information
ynhhoJ authored Sep 15, 2022
2 parents 479439d + 8d5f71f commit ba6d97e
Show file tree
Hide file tree
Showing 8 changed files with 107 additions and 68 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flibusta",
"version": "0.3.7",
"version": "0.4.0",
"author": "ynhhoJ",
"description": "Unofficial Flibusta API based on website search engine. If you like to read books - buy",
"license": "MIT",
Expand Down Expand Up @@ -35,23 +35,23 @@
},
"dependencies": {
"axios": "0.27.2",
"fast-xml-parser": "4.0.9",
"fast-xml-parser": "4.0.10",
"lodash": "^4.17.21",
"node-html-parser": "5.4.2"
"node-html-parser": "6.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "4.3.3",
"@types/lodash": "4.14.184",
"@types/lodash": "4.14.185",
"@types/mocha": "^9.1.0",
"@types/node": "18.7.15",
"@types/node": "18.7.18",
"@types/webpack-node-externals": "^2.5.3",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"@typescript-eslint/parser": "5.37.0",
"chai": "^4.3.6",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "8.23.0",
"eslint": "8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
Expand All @@ -64,7 +64,7 @@
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tscpaths": "^0.0.9",
"typescript": "4.8.2",
"typescript": "4.8.3",
"typescript-transform-paths": "^3.3.1",
"webpack": "5.74.0",
"webpack-cli": "^4.9.2",
Expand Down
3 changes: 1 addition & 2 deletions src/api/getCoverByBookId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ class GetCoverByBookId {
private async fetchImageByTypeUrl(url: string): Promise<Nullable<File>> {
return this.axiosInstance.get<File>(url, {})
.then((response) => response.data)
// eslint-disable-next-line unicorn/no-useless-undefined
.catch(() => undefined);
.catch((error) => error);
}

private async fetchCoverByUrl(id: number): Promise<Nullable<File>> {
Expand Down
7 changes: 1 addition & 6 deletions src/flibustaApiHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,7 @@ abstract class FlibustaAPIHelper extends FlibustaOpdsApiHelper {
public async getFlibustaHTMLPage(url: string): Promise<HTMLElement | null> {
return this.axiosInstance.get<string>(url)
.then((response) => parse(response.data).querySelector('#main'))
.catch((error) => {
console.log(`[API] ERROR: ${error}`);

// eslint-disable-next-line unicorn/no-null
return null;
});
.catch((error) => error);
}

public getInformationOfBookOrAuthor(node: HTMLElement): Author;
Expand Down
8 changes: 1 addition & 7 deletions src/flibustaOpdsApiHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,7 @@ class FlibustaOpdsApiHelper {
const parser = new XMLParser(parsingOptions);

return parser.parse(response.data);
})
.catch((error) => {
console.log(`[API] ERROR: ${error}`);

// eslint-disable-next-line unicorn/no-null
return null;
});
}).catch((error) => error);
}
}

Expand Down
4 changes: 2 additions & 2 deletions tests/api/getCoverByBookId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ describe('GetCoverBookById', () => {
expect(coverByBookId).to.satisfy((cover: File) => !isNil(cover));
});

it('should return undefined', async () => {
it('should return axios error', async () => {
const coverByBookId = await getCoverByBookIdApi.getCoverByBookId(Number.POSITIVE_INFINITY);

expect(coverByBookId).to.be.equal(undefined);
expect(axios.isAxiosError(coverByBookId)).to.be.equal(true);
});
});
});
4 changes: 2 additions & 2 deletions tests/flibustaApiHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ describe('FlibustaAPIHelper', () => {
expect(flibustaHTMLPage.id).to.be.equal('main');
});

it('should return undefined when flibusta html page is wrong', async () => {
it('should return axios error when flibusta html page is wrong', async () => {
const url = 'booksed';
const flibustaHTMLPage = await flibustaApiHelper.getFlibustaHTMLPage(url);

if (isNil(flibustaHTMLPage)) {
return;
}

expect(flibustaHTMLPage).to.be.equal(undefined);
expect(axios.isAxiosError(flibustaHTMLPage)).to.be.equal(true);
});
});

Expand Down
7 changes: 4 additions & 3 deletions tests/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { SearchBooksByNameOpdsResult } from '@localTypes/searchBooksByNameOpdsRe
import { PaginatedSearchResult } from '@localTypes/paginatedSearchResult';
import {Genres} from "@localTypes/genres";
import AuthorBooks from "@localTypes/authorsBook";
import axios from 'axios';

should();

Expand Down Expand Up @@ -392,10 +393,10 @@ describe('FlibustaAPI', () => {
expect(coverByBookId).to.satisfy((cover: File) => !isNil(cover));
});

it('should return undefined', async () => {
it('should return axios error', async () => {
const coverByBookId = await flibustaApi.getCoverByBookId(Number.POSITIVE_INFINITY);
expect(coverByBookId).to.be.equal(undefined);

expect(axios.isAxiosError(coverByBookId)).to.be.equal(true);
});
});
});
Expand Down
126 changes: 88 additions & 38 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==

"@eslint/eslintrc@^1.3.1":
version "1.3.1"
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.1.tgz#de0807bfeffc37b964a7d0400e0c348ce5a2543d"
integrity sha512-OhSY22oQQdw3zgPOOwdoj01l/Dzl1Z+xyUP33tkSN+aqyEhymJCcPHyXt+ylW8FSe0TfRC2VG+ROQOapD0aZSQ==
"@eslint/eslintrc@^1.3.2":
version "1.3.2"
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.2.tgz#58b69582f3b7271d8fa67fe5251767a5b38ea356"
integrity sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
Expand Down Expand Up @@ -428,10 +428,10 @@
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==

"@types/[email protected].184":
version "4.14.184"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.184.tgz#23f96cd2a21a28e106dc24d825d4aa966de7a9fe"
integrity sha512-RoZphVtHbxPZizt4IcILciSWiC6dcn+eZ8oX9IWEYfDMcocdd42f7NPI6fQj+6zI8y4E0L7gu2pcZKLGTRaV9Q==
"@types/[email protected].185":
version "4.14.185"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.185.tgz#c9843f5a40703a8f5edfd53358a58ae729816908"
integrity sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA==

"@types/minimatch@*":
version "3.0.5"
Expand All @@ -448,10 +448,10 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.42.tgz#d7e8f22700efc94d125103075c074396b5f41f9b"
integrity sha512-Q5BPGyGKcvQgAMbsr7qEGN/kIPN6zZecYYABeTDBizOsau+2NMdSVTar9UQw21A2+JyA2KRNDYaYrPB0Rpk2oQ==

"@types/[email protected].15":
version "18.7.15"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.15.tgz#20ae1ec80c57ee844b469f968a1cd511d4088b29"
integrity sha512-XnjpaI8Bgc3eBag2Aw4t2Uj/49lLBSStHWfqKvIuXD7FIrZyMLWp8KuAFHAqxMZYTF9l08N1ctUn9YNybZJVmQ==
"@types/[email protected].18":
version "18.7.18"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.18.tgz#633184f55c322e4fb08612307c274ee6d5ed3154"
integrity sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg==

"@types/normalize-package-data@^2.4.0":
version "2.4.1"
Expand Down Expand Up @@ -481,14 +481,14 @@
semver "^7.3.7"
tsutils "^3.21.0"

"@typescript-eslint/parser@5.36.2":
version "5.36.2"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.36.2.tgz#3ddf323d3ac85a25295a55fcb9c7a49ab4680ddd"
integrity sha512-qS/Kb0yzy8sR0idFspI9Z6+t7mqk/oRjnAYfewG+VN73opAUvmYL3oPIMmgOX6CnQS6gmVIXGshlb5RY/R22pA==
"@typescript-eslint/parser@5.37.0":
version "5.37.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.37.0.tgz#c382077973f3a4ede7453fb14cadcad3970cbf3b"
integrity sha512-01VzI/ipYKuaG5PkE5+qyJ6m02fVALmMPY3Qq5BHflDx3y4VobbLdHQkSMg9VPRS4KdNt4oYTMaomFoHonBGAw==
dependencies:
"@typescript-eslint/scope-manager" "5.36.2"
"@typescript-eslint/types" "5.36.2"
"@typescript-eslint/typescript-estree" "5.36.2"
"@typescript-eslint/scope-manager" "5.37.0"
"@typescript-eslint/types" "5.37.0"
"@typescript-eslint/typescript-estree" "5.37.0"
debug "^4.3.4"

"@typescript-eslint/[email protected]":
Expand All @@ -499,6 +499,14 @@
"@typescript-eslint/types" "5.36.2"
"@typescript-eslint/visitor-keys" "5.36.2"

"@typescript-eslint/[email protected]":
version "5.37.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.37.0.tgz#044980e4f1516a774a418dafe701a483a6c9f9ca"
integrity sha512-F67MqrmSXGd/eZnujjtkPgBQzgespu/iCZ+54Ok9X5tALb9L2v3G+QBSoWkXG0p3lcTJsL+iXz5eLUEdSiJU9Q==
dependencies:
"@typescript-eslint/types" "5.37.0"
"@typescript-eslint/visitor-keys" "5.37.0"

"@typescript-eslint/[email protected]":
version "5.36.2"
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.36.2.tgz#752373f4babf05e993adf2cd543a763632826391"
Expand All @@ -514,6 +522,11 @@
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.36.2.tgz#a5066e500ebcfcee36694186ccc57b955c05faf9"
integrity sha512-9OJSvvwuF1L5eS2EQgFUbECb99F0mwq501w0H0EkYULkhFa19Qq7WFbycdw1PexAc929asupbZcgjVIe6OK/XQ==

"@typescript-eslint/[email protected]":
version "5.37.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.37.0.tgz#09e4870a5f3af7af3f84e08d792644a87d232261"
integrity sha512-3frIJiTa5+tCb2iqR/bf7XwU20lnU05r/sgPJnRpwvfZaqCJBrl8Q/mw9vr3NrNdB/XtVyMA0eppRMMBqdJ1bA==

"@typescript-eslint/[email protected]":
version "5.36.2"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.36.2.tgz#0c93418b36c53ba0bc34c61fe9405c4d1d8fe560"
Expand All @@ -527,6 +540,19 @@
semver "^7.3.7"
tsutils "^3.21.0"

"@typescript-eslint/[email protected]":
version "5.37.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.37.0.tgz#956dcf5c98363bcb97bdd5463a0a86072ff79355"
integrity sha512-JkFoFIt/cx59iqEDSgIGnQpCTRv96MQnXCYvJi7QhBC24uyuzbD8wVbajMB1b9x4I0octYFJ3OwjAwNqk1AjDA==
dependencies:
"@typescript-eslint/types" "5.37.0"
"@typescript-eslint/visitor-keys" "5.37.0"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
semver "^7.3.7"
tsutils "^3.21.0"

"@typescript-eslint/[email protected]":
version "5.36.2"
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.36.2.tgz#b01a76f0ab244404c7aefc340c5015d5ce6da74c"
Expand All @@ -547,6 +573,14 @@
"@typescript-eslint/types" "5.36.2"
eslint-visitor-keys "^3.3.0"

"@typescript-eslint/[email protected]":
version "5.37.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.37.0.tgz#7b72dd343295ea11e89b624995abc7103c554eee"
integrity sha512-Hp7rT4cENBPIzMwrlehLW/28EVCOcE9U1Z1BQTc8EA8v5qpr7GRGuG+U58V5tTY48zvUOA3KHvw3rA8tY9fbdA==
dependencies:
"@typescript-eslint/types" "5.37.0"
eslint-visitor-keys "^3.3.0"

"@ungap/[email protected]":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
Expand Down Expand Up @@ -1703,12 +1737,12 @@ eslint-visitor-keys@^3.3.0:
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==

[email protected].0:
version "8.23.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.23.0.tgz#a184918d288820179c6041bb3ddcc99ce6eea040"
integrity sha512-pBG/XOn0MsJcKcTRLr27S5HpzQo4kLr+HjLQIyK4EiCsijDl/TB+h5uEuJU6bQ8Edvwz1XWOjpaP2qgnXGpTcA==
[email protected].1:
version "8.23.1"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.23.1.tgz#cfd7b3f7fdd07db8d16b4ac0516a29c8d8dca5dc"
integrity sha512-w7C1IXCc6fNqjpuYd0yPlcTKKmHlHHktRkzmBPZ+7cvNBQuiNjx0xaMTjAJGCafJhQkrFJooREv0CtrVzmHwqg==
dependencies:
"@eslint/eslintrc" "^1.3.1"
"@eslint/eslintrc" "^1.3.2"
"@humanwhocodes/config-array" "^0.10.4"
"@humanwhocodes/gitignore-to-minimatch" "^1.0.2"
"@humanwhocodes/module-importer" "^1.0.1"
Expand All @@ -1727,7 +1761,6 @@ [email protected]:
fast-deep-equal "^3.1.3"
file-entry-cache "^6.0.1"
find-up "^5.0.0"
functional-red-black-tree "^1.0.1"
glob-parent "^6.0.1"
globals "^13.15.0"
globby "^11.1.0"
Expand All @@ -1736,6 +1769,7 @@ [email protected]:
import-fresh "^3.0.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
js-sdsl "^4.1.4"
js-yaml "^4.1.0"
json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.4.1"
Expand Down Expand Up @@ -1855,7 +1889,7 @@ fast-glob@^2.2.6:
merge2 "^1.2.3"
micromatch "^3.1.10"

fast-glob@^3.2.11, fast-glob@^3.2.9:
fast-glob@^3.2.11:
version "3.2.11"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
Expand All @@ -1866,6 +1900,17 @@ fast-glob@^3.2.11, fast-glob@^3.2.9:
merge2 "^1.3.0"
micromatch "^4.0.4"

fast-glob@^3.2.9:
version "3.2.12"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80"
integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
glob-parent "^5.1.2"
merge2 "^1.3.0"
micromatch "^4.0.4"

fast-json-stable-stringify@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
Expand All @@ -1876,10 +1921,10 @@ fast-levenshtein@^2.0.6:
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==

[email protected].9:
version "4.0.9"
resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.0.9.tgz#3a81dab7b4952b8d38f0136d28bd055b80ed6512"
integrity sha512-4G8EzDg2Nb1Qurs3f7BpFV4+jpMVsdgLVuG1Uv8O2OHJfVCg7gcA53obuKbmVqzd4Y7YXVBK05oJG7hzGIdyzg==
[email protected].10:
version "4.0.10"
resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.0.10.tgz#72c81f74a0ef98af77ef37dd19d227533aae2994"
integrity sha512-mYMMIk7Ho1QOiedyvafdyPamn1Vlda+5n95lcn0g79UiCQoLQ2xfPQ8m3pcxBMpVaftYXtoIE2wrNTjmLQnnkg==
dependencies:
strnum "^1.0.5"

Expand Down Expand Up @@ -2720,6 +2765,11 @@ jest-worker@^27.4.5:
merge-stream "^2.0.0"
supports-color "^8.0.0"

js-sdsl@^4.1.4:
version "4.1.4"
resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.4.tgz#78793c90f80e8430b7d8dc94515b6c77d98a26a6"
integrity sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==

js-tokens@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
Expand Down Expand Up @@ -3058,10 +3108,10 @@ neo-async@^2.6.2:
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==

node-html-parser@5.4.2:
version "5.4.2"
resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-5.4.2.tgz#93e004038c17af80226c942336990a0eaed8136a"
integrity sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==
node-html-parser@6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-6.0.0.tgz#da86ce139ba0b9ec72f86f32a5997738f2b51255"
integrity sha512-o4vS5Jm7ZdV5WN4/jHmCEVJOpm4exLCeXOcZnNzXi0BGv0AS8FsGwyQ4k0Ujmui1NMQs6qsTy+amjjpr9rmz4Q==
dependencies:
css-select "^4.2.1"
he "1.2.0"
Expand Down Expand Up @@ -4151,10 +4201,10 @@ typescript-transform-paths@^3.3.1:
dependencies:
minimatch "^3.0.4"

[email protected].2:
version "4.8.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.2.tgz#e3b33d5ccfb5914e4eeab6699cf208adee3fd790"
integrity sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==
[email protected].3:
version "4.8.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88"
integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==

unbox-primitive@^1.0.2:
version "1.0.2"
Expand Down

0 comments on commit ba6d97e

Please sign in to comment.