(string, search)
| 12 | const CONCURRENCY_DEFAULT = 10; |
| 13 | |
| 14 | function regexTest (string, search) { |
| 15 | const re = new RegExp(search); |
| 16 | return re.test(string); |
| 17 | } |
| 18 | |
| 19 | function ensureViewportLabel (config) { |
| 20 | if (typeof config.viewports === 'object') { |
no outgoing calls
no test coverage detected