Skip to content

Commit

Permalink
Address vulns in dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sultur committed Aug 6, 2024
1 parent 452d9c4 commit 4b5aff1
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 27 deletions.
21 changes: 12 additions & 9 deletions example/react-native/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 24 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/__tests__/util.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ describe("Util tests", () => {
it("asciify should turn Guðrún into Gudrun", () => {
const result = asciify("Guðrún");
expect(result).toEqual("Gudrun");
expect(asciify("ð Ð á Á ú Ú í Í é É þ Þ ó Ó ý Ý ö Ö æ Æ")).toEqual(
"d D a A u U i I e E th TH o O y Y o O ae AE"
);
});
it("should capitalize first letter", () => {
expect(capFirst("abcd")).toEqual("Abcd");
Expand Down

0 comments on commit 4b5aff1

Please sign in to comment.