Files
hoppscotch/packages/hoppscotch-app/helpers/curl/index.ts

6 lines
200 B
TypeScript

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