===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-stack-utils-2.0.3/index.js-8-  'node',
node-stack-utils-2.0.3/index.js:9:).map(n => new RegExp(`(?:\\((?:node:)?${n}(?:\\.js)?:\\d+:\\d+\\)$|^\\s*at (?:node:)?${n}(?:\\.js)?:\\d+:\\d+$)`));
node-stack-utils-2.0.3/index.js-10-
##############################################
node-stack-utils-2.0.3/index.js-77-
node-stack-utils-2.0.3/index.js:78:      st = st.replace(`${this._cwd}/`, '');
node-stack-utils-2.0.3/index.js-79-
##############################################
node-stack-utils-2.0.3/index.js-94-
node-stack-utils-2.0.3/index.js:95:    return result.map(line => `${indent}${line}\n`).join('');
node-stack-utils-2.0.3/index.js-96-  }
##############################################
node-stack-utils-2.0.3/index.js-240-            file = after;
node-stack-utils-2.0.3/index.js:241:            fname += ` (${before}`;
node-stack-utils-2.0.3/index.js-242-            break;
##############################################
node-stack-utils-2.0.3/index.js-287-    filename = filename.replace(/\\/g, '/');
node-stack-utils-2.0.3/index.js:288:    if (filename.startsWith(`${cwd}/`)) {
node-stack-utils-2.0.3/index.js-289-      filename = filename.slice(cwd.length + 1);
##############################################
node-stack-utils-2.0.3/index.js-302-
node-stack-utils-2.0.3/index.js:303:  return new RegExp(`[\/\\\\]node_modules[\/\\\\](?:${packages.join('|')})[\/\\\\][^:]+:\\d+:\\d+`)
node-stack-utils-2.0.3/index.js-304-}
##############################################
node-stack-utils-2.0.3/test/fixtures/nested-errors.js-8-	bar(function nested(err) {
node-stack-utils-2.0.3/test/fixtures/nested-errors.js:9:		cb(new FooError(`foo${err.message}`, err));
node-stack-utils-2.0.3/test/fixtures/nested-errors.js-10-	});
##############################################
node-stack-utils-2.0.3/test/fixtures/nested-errors.js-14-	internal(function moreNested(err) {
node-stack-utils-2.0.3/test/fixtures/nested-errors.js:15:		cb(new BarError(`bar: ${err.message}`, err));
node-stack-utils-2.0.3/test/fixtures/nested-errors.js-16-	});
##############################################
node-stack-utils-2.0.3/test/node-modules.js-10-  const result = stackUtil.clean('Error: Simulated\n' +
node-stack-utils-2.0.3/test/node-modules.js:11:    `    at fn (/usr/src/stack-utils/node_modules/${fromModule}/index.js:1:1)\n`);
node-stack-utils-2.0.3/test/node-modules.js-12-  if (ignoredPackages.includes(fromModule)) {
node-stack-utils-2.0.3/test/node-modules.js:13:    t.notMatch(result, `node_modules/${fromModule}/`);
node-stack-utils-2.0.3/test/node-modules.js-14-  } else {
node-stack-utils-2.0.3/test/node-modules.js:15:    t.match(result, `node_modules/${fromModule}/`);
node-stack-utils-2.0.3/test/node-modules.js-16-  }