Skip to content

Commit

Permalink
impl: combine_something
Browse files Browse the repository at this point in the history
  • Loading branch information
gnlow committed Dec 19, 2023
1 parent 071b023 commit 75b1661
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,9 @@ export class Entry {
count_match_string(where: string, what: string) {
return where.match(new RegExp(`(?=${what})`, "g"))?.length || 0
}
combine_something(a: string | number, b: string | number) {
return `${a}${b}`
}

/* 자료 */
get_variable(id: string) {
Expand Down

0 comments on commit 75b1661

Please sign in to comment.