File size: 460 Bytes
d7bca75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { promises as fs } from 'fs'
import { join } from 'path'
import { parseHeadersFromCurl } from '@/lib/utils'
(async () => {
const content = await fs.readFile(join(__dirname, './fixtures/curl.txt'), 'utf-8')
const headers = parseHeadersFromCurl(content)
console.log(headers)
const cmdContent = await fs.readFile(join(__dirname, './fixtures/cmd.txt'), 'utf-8')
const cmdHeaders = parseHeadersFromCurl(cmdContent)
console.log(cmdHeaders)
})()
|