refactor: urlencoded key value pair system

This commit is contained in:
Andrew Bastin
2022-01-21 19:32:05 +05:30
parent 09269b3cec
commit 73cccf73df
6 changed files with 448 additions and 14 deletions

View File

@@ -0,0 +1,2 @@
export const stringArrayJoin = (separator: string) => (arr: string[]) =>
arr.join(separator)