()
| 4 | const isUrl = (path: string): boolean => reg.test(path); |
| 5 | |
| 6 | const isAntDesignPro = (): boolean => { |
| 7 | if (ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION === 'site') { |
| 8 | return true; |
| 9 | } |
| 10 | return window.location.hostname === 'preview.pro.ant.design'; |
| 11 | }; |
| 12 | |
| 13 | // 给官方演示站点用,用于关闭真实开发环境不需要使用的特性 |
| 14 | const isAntDesignProOrDev = (): boolean => { |
no outgoing calls
no test coverage detected