This PR makes uncurl data-raw aware. #33
Recently chrome started giving me curl commands with the --data-raw flag.
This caused uncurl to fail.
In accordance with curls man page an alias from data-raw to data-binary is sufficient.
The only difference from data-binary to data-raw is that the latter would allow for the uploading of data from a local file to a server by referencing the file with '@'. This of course is something no browser will make use of so can ignore this case.
This PR makes uncurl data-raw aware. #33 Recently chrome started giving me curl commands with the --data-raw flag. This caused uncurl to fail.
In accordance with curls man page an alias from data-raw to data-binary is sufficient. The only difference from data-binary to data-raw is that the latter would allow for the uploading of data from a local file to a server by referencing the file with '@'. This of course is something no browser will make use of so can ignore this case.