Skip to content

Commit

Permalink
chore: deno fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Im-Beast committed Jun 27, 2024
1 parent a4cc313 commit b743db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/strings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
export function replace(
string: string,
search: string,
replaceValue: string
replaceValue: string,
): string {
const searchIndex = string.indexOf(search);
if (searchIndex === -1) return string;
Expand All @@ -32,7 +32,7 @@ export function replace(
export function replaceAll(
string: string,
search: string,
replaceValue: string
replaceValue: string,
): string {
let searchIndex = string.indexOf(search);
if (searchIndex === -1) return string;
Expand Down

0 comments on commit b743db3

Please sign in to comment.