(mixHeaders = {})
| 1154 | } |
| 1155 | |
| 1156 | function getBaseDoneHeaders(mixHeaders = {}) { |
| 1157 | return Object.assign( |
| 1158 | { |
| 1159 | 'Access-Control-Allow-Origin': '*', |
| 1160 | 'Access-Control-Allow-Methods': 'POST,GET,OPTIONS,PUT,DELETE', |
| 1161 | 'Access-Control-Allow-Headers': |
| 1162 | 'Origin, X-Requested-With, Content-Type, Accept' |
| 1163 | }, |
| 1164 | mixHeaders |
| 1165 | ) |
| 1166 | } |
| 1167 | |
| 1168 | function getHtmlDoneHeaders() { |
| 1169 | return getBaseDoneHeaders({ |
no outgoing calls
no test coverage detected
searching dependent graphs…