We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 522c36c commit c04aa90Copy full SHA for c04aa90
browser/dom/mod.ts
@@ -11,3 +11,4 @@ export * from "./cache.ts";
11
export * from "./cursor.ts";
12
export * from "./selection.ts";
13
export * from "./stores.ts";
14
+export * from "./pushPageTransition.ts";
title.test.ts
@@ -8,7 +8,10 @@ import { assertStrictEquals } from "./deps/testing.ts";
8
9
Deno.test("toTitleLc()", async (t) => {
10
await t.step("` ` -> `_`", () => {
- assertStrictEquals<string>(toTitleLc("空白入り タイトル"), "空白入り_タイトル");
+ assertStrictEquals<string>(
+ toTitleLc("空白入り タイトル"),
+ "空白入り_タイトル",
+ );
15
assertStrictEquals<string>(
16
toTitleLc(" 前後にも 空白入り _タイトル "),
17
"_前後にも_空白入り__タイトル_",
0 commit comments