[HAI] isIsomorphic my solution

This commit is contained in:
2024-11-22 05:07:08 +03:00
parent 8e4c2c136e
commit 4c14d98644
4 changed files with 104 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { describe, it, expect } from "vitest";
import { isIsomorphic } from "./isIsomorphic.ts";
describe("isIsomorphic", () => {
it("badc babb => false", () => {
expect(isIsomorphic("badc", "babb")).toBeFalsy();
});
});