(headers = {})
| 72 | } |
| 73 | |
| 74 | function getResponseToken(headers = {}) { |
| 75 | return ( |
| 76 | headers["set-access-token"] || |
| 77 | headers["Set-Access-Token"] || |
| 78 | headers["SET-ACCESS-TOKEN"] || |
| 79 | "" |
| 80 | ); |
| 81 | } |
| 82 | |
| 83 | function buildHeaders(token = "") { |
| 84 | const timestamp = Date.now().toString(); |
no outgoing calls
no test coverage detected