(key: string, defaultValue = '')
| 54 | * @param defaultValue |
| 55 | */ |
| 56 | export const getMetaEnv = (key: string, defaultValue = '') => { |
| 57 | const meta = document.querySelector(`meta[name=${key}]`) as HTMLMetaElement; |
| 58 | return meta && !isEmpty(meta.content) ? meta.content : defaultValue; |
| 59 | }; |
| 60 | |
| 61 | /** |
| 62 | * 获取LocalStorage name对应值 |
no outgoing calls
no test coverage detected