blob: 2194c5d43a54137e0599671b60e6275b2917e710 [file] [log] [blame]
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);
};