(mixHeaders = {})
| 1211 | } |
| 1212 | |
| 1213 | function getBaseDoneHeaders(mixHeaders = {}) { |
| 1214 | return Object.assign( |
| 1215 | { |
| 1216 | 'Access-Control-Allow-Origin': '*', |
| 1217 | 'Access-Control-Allow-Methods': 'POST,GET,OPTIONS,PUT,DELETE', |
| 1218 | 'Access-Control-Allow-Headers': |
| 1219 | 'Origin, X-Requested-With, Content-Type, Accept' |
| 1220 | }, |
| 1221 | mixHeaders |
| 1222 | ) |
| 1223 | } |
| 1224 | |
| 1225 | function getHtmlDoneHeaders() { |
| 1226 | return getBaseDoneHeaders({ |
no outgoing calls
no test coverage detected