(s)
| 31237 | return !(!s || s.indexOf('localhost') >= 0 || s.indexOf('127.0.0.1') >= 0 || 'none' === s) |
| 31238 | } |
| 31239 | const createDeepLinkPath = (s) => |
| 31240 | 'string' == typeof s || s instanceof String ? s.trim().replace(/\s/g, '%20') : '', |
| 31241 | escapeDeepLinkPath = (s) => Et()(createDeepLinkPath(s).replace(/%20/g, '_')), |
| 31242 | isExtension = (s) => /^x-/.test(s), |
| 31243 | getExtensions = (s) => |
no test coverage detected