fix: urlencoded form evaluation issues
This commit is contained in:
7
packages/hoppscotch-app/helpers/functional/record.ts
Normal file
7
packages/hoppscotch-app/helpers/functional/record.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export const tupleToRecord = <
|
||||
KeyType extends string | number | symbol,
|
||||
ValueType
|
||||
>(
|
||||
tuples: [KeyType, ValueType][]
|
||||
): Record<KeyType, ValueType> =>
|
||||
(Object.assign as any)(...tuples.map(([key, val]) => ({ [key]: val })))
|
||||
Reference in New Issue
Block a user