Files
hoppscotch/packages/hoppscotch-common/src/helpers/curl/index.ts
2022-12-02 03:05:35 -05:00

6 lines
197 B
TypeScript

import { flow } from "fp-ts/function"
import { cloneDeep } from "lodash-es"
import { parseCurlCommand } from "./curlparser"
export const parseCurlToHoppRESTReq = flow(parseCurlCommand, cloneDeep)