Added get_dump and post_dump functions for debug

merge-requests/2/head
Dominika 2020-05-29 09:01:52 +02:00
parent 4cd212faab
commit 73857c46ab
1 changed files with 14 additions and 0 deletions

View File

@ -17,3 +17,17 @@ function header() {
r[headers]+="$i\r\n"
done
}
# get_dump()
function get_dump() {
for i in "${!get_data[@]}"; do
echo "${i}=${get_data[$i]}"
done
}
# post_dump()
function post_dump() {
for i in "${!post_data[@]}"; do
echo "${i}=${post_data[$i]}"
done
}