Improved continueUntil, added consumeWhile and made the EVTX extractor more complete

This commit is contained in:
n1073645 2019-11-12 11:00:43 +00:00
parent 8e2345cf9e
commit d3c13b118d
3 changed files with 11 additions and 10 deletions

View File

@ -47,6 +47,7 @@
"block-spacing": "error",
"array-bracket-spacing": "error",
"comma-spacing": "error",
"spaced-comment": ["error", "always"],
"comma-style": "error",
"computed-property-spacing": "error",
"no-trailing-spaces": "warn",

View File

@ -189,7 +189,7 @@ export default class Stream {
found = true;
// Loop through the elements comparing them to val.
for (let x = length-1; x !== -1; x--) {
for (let x = length-1; x+1; x--) {
if (this.bytes[(this.position-length) + x] !== val[x]) {
found = false;