Removed unused regexp.

This commit is contained in:
hackademix 2018-09-10 19:23:47 +02:00
parent 48053d96d4
commit 8c739b064c
1 changed files with 0 additions and 1 deletions

View File

@ -54,7 +54,6 @@
let flatten = arr => arr.reduce((a, b) => a.concat(Array.isArray(b) ? flatten(b) : b), []);
let protocolRx = /^(\w+):/i;
let pathRx = /(?:[^:/]\/|:\/{3})$/;
let portRx = /:\d+(?=\/|$)/;
let validMatchPatternRx = /^(?:\*|(?:http|ws|ftp)s?|file):\/\/(?:\*|(?:\*\.)?[\w\u0100-\uf000][\w\u0100-\uf000.-]*|\[[\w:]+\])?\/(\*|[^*]*)$/;