Files
talk/src/core/client/embed/utils/startsWith.spec.ts
T

8 lines
215 B
TypeScript

import startsWith from "./startsWith";
it("should work correctly", () => {
const str1 = "Saturday night plans";
expect(startsWith(str1, "Sat")).toBe(true);
expect(startsWith(str1, "Sat", 3)).toBe(false);
});