(source: string)
| 16 | import { comparator } from './constants' |
| 17 | |
| 18 | export function parseRegex(source: string): RegExp { |
| 19 | return new RegExp(source) |
| 20 | } |
| 21 | |
| 22 | export function isXVersion(version: string): boolean { |
| 23 | return !version || version.toLowerCase() === 'x' || version === '*' |
no outgoing calls
no test coverage detected
searching dependent graphs…