Skip to content

Commit 0f72045

Browse files
committed
chore: rename _utils.ts to object.ts
1 parent f0361df commit 0f72045

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

β€Žsrc/context.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NullProtoObj } from "./_utils.ts";
1+
import { NullProtoObj } from "./object.ts";
22
import type { RouterContext } from "./types.ts";
33

44
/**

β€Žsrc/index.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export { removeRoute } from "./operations/remove.ts";
88
export { findAllRoutes } from "./operations/find-all.ts";
99
export { routeToRegExp } from "./regexp.ts";
1010

11-
export { NullProtoObj } from "./_utils.ts";
11+
export { NullProtoObj } from "./object.ts";
File renamed without changes.

β€Žsrc/operations/_utils.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NullProtoObj } from "../_utils.ts";
1+
import { NullProtoObj } from "../object.ts";
22
import type { MatchedRoute, ParamsIndexMap } from "../types.ts";
33

44
export function splitPath(path: string): string[] {

β€Žsrc/operations/add.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NullProtoObj } from "../_utils.ts";
1+
import { NullProtoObj } from "../object.ts";
22
import type { RouterContext, ParamsIndexMap } from "../types.ts";
33
import { splitPath } from "./_utils.ts";
44

0 commit comments

Comments
Β (0)