2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-23 03:33:24 +00:00

Merge remote-tracking branch 'upstream/master' into feature_xpath

# Conflicts:
#	Gruntfile.js
#	src/js/.jshintrc
This commit is contained in:
Mike Schwörer
2016-12-16 22:15:53 +01:00
52 changed files with 1938 additions and 1692 deletions

View File

@@ -25,7 +25,7 @@ var Extract = {
total = 0,
match;
while (!!(match = search_regex.exec(input))) {
while ((match = search_regex.exec(input))) {
if (remove_regex && remove_regex.test(match[0]))
continue;
total++;