Version 1.6.2

Added:
+ Added rules from #172
+ Added rules from #176
+ Added rules from #178

Fixed:
+ #170
+ #162
+ #163
This commit is contained in:
Kevin Röbert
2019-04-26 23:41:44 +02:00
parent 1d6d36eb8c
commit 8ca852476d
7 changed files with 52 additions and 10 deletions

View File

@@ -99,7 +99,7 @@ function countFields(url)
*/
function extractFileds(url)
{
return (url.match(/[^\/|\?|&]+=[^\/|\?|&]+/gi) || []);
return (url.match(/[^\/|\?|&]+=*[^\/|\?|&]+/gi) || []);
}
/**