Skip to content

Commit

Permalink
feat/BibimMandu-IssueTacker#48: api 스트링쿼리 형식를 filter 입력 형식으로 파싱하는 함수
Browse files Browse the repository at this point in the history
  • Loading branch information
qkdflrgs committed Aug 4, 2023
1 parent 2631a17 commit 9a9d612
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions FE/src/utils/parseParam.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function parseParam(value: string | undefined): string {
return value === undefined ? "" : value.replace(/&/g, " ");
}

0 comments on commit 9a9d612

Please sign in to comment.