Merge branch 'fix/urlencoded'

This commit is contained in:
liyasthomas
2022-01-24 10:09:31 +05:30
15 changed files with 1177 additions and 372 deletions

View File

@@ -39,3 +39,6 @@ export const arrayFlatMap =
<T, U>(mapFunc: (value: T, index: number, arr: T[]) => U[]) =>
(arr: T[]) =>
arr.flatMap(mapFunc)
export const stringArrayJoin = (separator: string) => (arr: string[]) =>
arr.join(separator)