===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-tippex-3.0.0+ds/README.md-33-var e = "some more text";
node-tippex-3.0.0+ds/README.md:34:var f = `an ${ 'unnecessarily' ? `${'complicated'}` : `${'template'}` } string`;
node-tippex-3.0.0+ds/README.md-35-```
##############################################
node-tippex-3.0.0+ds/README.md-47-var e = "              ";
node-tippex-3.0.0+ds/README.md:48:var f = `   ${ '             ' ? `${'           '}` : `${'        '}` }       `;
node-tippex-3.0.0+ds/README.md-49-```
##############################################
node-tippex-3.0.0+ds/README.md-110-code = tippex.replace( code, importPattern, ( match, name, source ) => {
node-tippex-3.0.0+ds/README.md:111:  return `var ${name} = require('${source}')`;
node-tippex-3.0.0+ds/README.md-112-});
##############################################
node-tippex-3.0.0+ds/src/index.js-315-
node-tippex-3.0.0+ds/src/index.js:316:			const snippet = `${beforeLine}${afterLine}\n${ Array( beforeLine.length + 1 ).join( ' ' )}^`;
node-tippex-3.0.0+ds/src/index.js-317-
node-tippex-3.0.0+ds/src/index.js:318:			throw new Error( `Unexpected character (${line}:${column}). If this is valid JavaScript, it's probably a bug in tippex. Please raise an issue at https://github.com/Rich-Harris/tippex/issues – thanks!\n\n${snippet}` );
node-tippex-3.0.0+ds/src/index.js-319-		}
##############################################
node-tippex-3.0.0+ds/test/samples/misc.js-19-const doubleQuotedString = "this is also \"escaped\"";
node-tippex-3.0.0+ds/test/samples/misc.js:20:const templateString = `the answer is ${answer}. This is a backtick: \``;
node-tippex-3.0.0+ds/test/samples/misc.js-21-
##############################################
node-tippex-3.0.0+ds/test/test.js-11-fs.readdirSync( 'test/samples' ).forEach( file => {
node-tippex-3.0.0+ds/test/test.js:12:	samples[ file.replace( /\.jsx?$/, '' ) ] = fs.readFileSync( `test/samples/${file}`, 'utf-8' );
node-tippex-3.0.0+ds/test/test.js-13-});
##############################################
node-tippex-3.0.0+ds/test/test.js-170-			'erases template strings': [
node-tippex-3.0.0+ds/test/test.js:171:				"const templateString = `the answer is ${answer}. This is a backtick: \\``;",
node-tippex-3.0.0+ds/test/test.js:172:				"const templateString = `              ${answer}                        `;"
node-tippex-3.0.0+ds/test/test.js-173-			],
##############################################
node-tippex-3.0.0+ds/test/test.js-205-			'removes things that look like template expressions': [
node-tippex-3.0.0+ds/test/test.js:206:				'const c = `$ {}${ `${ `$` }` }`;',
node-tippex-3.0.0+ds/test/test.js:207:				'const c = `    ${ `${ ` ` }` }`;'
node-tippex-3.0.0+ds/test/test.js-208-			],
##############################################
node-tippex-3.0.0+ds/test/test.js-299-			var result = tippex.replace( samples.imports, importPattern, ( match, name, source ) => {
node-tippex-3.0.0+ds/test/test.js:300:				return `var ${name} = require('${source}')`;
node-tippex-3.0.0+ds/test/test.js-301-			});