(name, content)
| 36 | }) |
| 37 | |
| 38 | export const getMetaContent = (name, content) => { |
| 39 | /* istanbul ignore next */ |
| 40 | content || (content = 'content') |
| 41 | /* istanbul ignore next */ |
| 42 | const el = window.document.querySelector(`meta[name='${name}']`) |
| 43 | /* istanbul ignore next */ |
| 44 | return el && el.getAttribute(content) |
| 45 | } |
| 46 | |
| 47 | export const formatErrorMsg = err => { |
| 48 | let msg = 'Error: ' |