blob: 2194c5d43a54137e0599671b60e6275b2917e710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
const tao_response = (tao_value, base_url) => {
const payload = {
'headers': {
'Timing-Allow-Origin': tao_value
}
};
return custom_cors_response(payload, base_url);
};
const remote_tao_response = tao_value => {
const {REMOTE_ORIGIN} = get_host_info();
return tao_response(tao_value, REMOTE_ORIGIN);
};
|