===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-file-loader-6.2.0/README.md-170-            if (/my-custom-image\.png/.test(resourcePath)) {
node-file-loader-6.2.0/README.md:171:              return `other_output_path/${url}`;
node-file-loader-6.2.0/README.md-172-            }
##############################################
node-file-loader-6.2.0/README.md-174-            if (/images/.test(context)) {
node-file-loader-6.2.0/README.md:175:              return `image_output_path/${url}`;
node-file-loader-6.2.0/README.md-176-            }
node-file-loader-6.2.0/README.md-177-
node-file-loader-6.2.0/README.md:178:            return `output_path/${url}`;
node-file-loader-6.2.0/README.md-179-          },
##############################################
node-file-loader-6.2.0/README.md-233-            if (/my-custom-image\.png/.test(resourcePath)) {
node-file-loader-6.2.0/README.md:234:              return `other_public_path/${url}`;
node-file-loader-6.2.0/README.md-235-            }
##############################################
node-file-loader-6.2.0/README.md-237-            if (/images/.test(context)) {
node-file-loader-6.2.0/README.md:238:              return `image_output_path/${url}`;
node-file-loader-6.2.0/README.md-239-            }
node-file-loader-6.2.0/README.md-240-
node-file-loader-6.2.0/README.md:241:            return `public_path/${url}`;
node-file-loader-6.2.0/README.md-242-          },
##############################################
node-file-loader-6.2.0/README.md-267-          publicPath: '/some/path/',
node-file-loader-6.2.0/README.md:268:          postTransformPublicPath: (p) => `__webpack_public_path__ + ${p}`,
node-file-loader-6.2.0/README.md-269-        },
##############################################
node-file-loader-6.2.0/README.md-695-
node-file-loader-6.2.0/README.md:696:__webpack_public_path__ = `${assetPrefixForNamespace(namespace)}/`;
node-file-loader-6.2.0/README.md-697-```
##############################################
node-file-loader-6.2.0/README.md-717-          publicPath: 'static/assets/',
node-file-loader-6.2.0/README.md:718:          postTransformPublicPath: (p) => `__webpack_public_path__ + ${p}`,
node-file-loader-6.2.0/README.md-719-        },
##############################################
node-file-loader-6.2.0/src/index.js-35-
node-file-loader-6.2.0/src/index.js:36:  let publicPath = `__webpack_public_path__ + ${JSON.stringify(outputPath)}`;
node-file-loader-6.2.0/src/index.js-37-
##############################################
node-file-loader-6.2.0/src/index.js-44-          ? options.publicPath
node-file-loader-6.2.0/src/index.js:45:          : `${options.publicPath}/`
node-file-loader-6.2.0/src/index.js-46-      }${url}`;
##############################################
node-file-loader-6.2.0/src/index.js-86-
node-file-loader-6.2.0/src/index.js:87:  return `${esModule ? 'export default' : 'module.exports ='} ${publicPath};`;
node-file-loader-6.2.0/src/index.js-88-}
##############################################
node-file-loader-6.2.0/test/helpers/execute.js-16-  module._compile(
node-file-loader-6.2.0/test/helpers/execute.js:17:    `let __export__;${code};module.exports = __export__;`,
node-file-loader-6.2.0/test/helpers/execute.js-18-    resource
##############################################
node-file-loader-6.2.0/test/outputPath-option.test.js-81-
node-file-loader-6.2.0/test/outputPath-option.test.js:82:        return `output_path_func/${url}`;
node-file-loader-6.2.0/test/outputPath-option.test.js-83-      },
##############################################
node-file-loader-6.2.0/test/outputPath-option.test.js-100-      outputPath(url) {
node-file-loader-6.2.0/test/outputPath-option.test.js:101:        return `output_path_func/${url}`;
node-file-loader-6.2.0/test/outputPath-option.test.js-102-      },
##############################################
node-file-loader-6.2.0/test/outputPath-option.test.js-153-      outputPath(url) {
node-file-loader-6.2.0/test/outputPath-option.test.js:154:        return `output_path_func/${url}`;
node-file-loader-6.2.0/test/outputPath-option.test.js-155-      },
##############################################
node-file-loader-6.2.0/test/outputPath-option.test.js-171-      publicPath(url) {
node-file-loader-6.2.0/test/outputPath-option.test.js:172:        return `public_path_func/${url}`;
node-file-loader-6.2.0/test/outputPath-option.test.js-173-      },
##############################################
node-file-loader-6.2.0/test/outputPath-option.test.js-190-      outputPath(url) {
node-file-loader-6.2.0/test/outputPath-option.test.js:191:        return `output_path_func/${url}`;
node-file-loader-6.2.0/test/outputPath-option.test.js-192-      },
node-file-loader-6.2.0/test/outputPath-option.test.js-193-      publicPath(url) {
node-file-loader-6.2.0/test/outputPath-option.test.js:194:        return `public_path_func/${url}`;
node-file-loader-6.2.0/test/outputPath-option.test.js-195-      },
##############################################
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-41-    const compiler = getCompiler('simple.js', {
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js:42:      postTransformPublicPath: (p) => `${p} + "/test"`,
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-43-    });
##############################################
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-73-      publicPath: 'public_path/',
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js:74:      postTransformPublicPath: (p) => `${p} + "?test=test"`,
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-75-    });
##############################################
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-89-      publicPath(url) {
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js:90:        return `public_path/${url}`;
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-91-      },
##############################################
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-107-      publicPath(url) {
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js:108:        return `public_path/${url}`;
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-109-      },
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js:110:      postTransformPublicPath: (p) => `${p} + "?test=test"`,
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-111-    });
##############################################
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-125-      publicPath: 'public_path/',
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js:126:      postTransformPublicPath: (p) => `"path_prefix/" + ${p}`,
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-127-    });
##############################################
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-143-        publicPath: 'public_path/',
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js:144:        postTransformPublicPath: (p) => `__webpack_public_path__ + ${p}`,
node-file-loader-6.2.0/test/postTransformPublicPath-option.test.js-145-      },
##############################################
node-file-loader-6.2.0/test/publicPath-option.test.js-76-
node-file-loader-6.2.0/test/publicPath-option.test.js:77:        return `public_path/${url}`;
node-file-loader-6.2.0/test/publicPath-option.test.js-78-      },