===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-ignore-5.1.4/index.js-89-    /[\\^$.|*+(){]/g,
node-ignore-5.1.4/index.js:90:    match => `\\${match}`
node-ignore-5.1.4/index.js-91-  ],
##############################################
node-ignore-5.1.4/index.js-97-    (match, p1, p2) => p2 === ']'
node-ignore-5.1.4/index.js:98:      ? `[${sanitizeRange(p1)}]`
node-ignore-5.1.4/index.js:99:      : `\\${match}`
node-ignore-5.1.4/index.js-100-  ],
##############################################
node-ignore-5.1.4/index.js-156-      // foo/ will not match 'foo'
node-ignore-5.1.4/index.js:157:      ? `${match}$`
node-ignore-5.1.4/index.js-158-      // foo matches 'foo' and 'foo/'
node-ignore-5.1.4/index.js:159:      : `${match}(?=$|\\/$)`
node-ignore-5.1.4/index.js-160-  ],
##############################################
node-ignore-5.1.4/index.js-226-    // '*.js' doesn't match 'abc'
node-ignore-5.1.4/index.js:227:    (_, p1) => `${p1}[^\\/]*`
node-ignore-5.1.4/index.js-228-  ],
##############################################
node-ignore-5.1.4/index.js-240-        // 'abc/*' does not match 'abc/'
node-ignore-5.1.4/index.js:241:        ? `${p1}[^/]+`
node-ignore-5.1.4/index.js-242-
##############################################
node-ignore-5.1.4/index.js-246-
node-ignore-5.1.4/index.js:247:      return `${prefix}(?=$|\\/$)`
node-ignore-5.1.4/index.js-248-    }
##############################################
node-ignore-5.1.4/index.js-342-    return doThrow(
node-ignore-5.1.4/index.js:343:      `path must be a string, but got \`${originalPath}\``,
node-ignore-5.1.4/index.js-344-      TypeError
##############################################
node-ignore-5.1.4/index.js-356-    return doThrow(
node-ignore-5.1.4/index.js:357:      `path should be a ${r} string, but got "${originalPath}"`,
node-ignore-5.1.4/index.js-358-      RangeError
##############################################
node-ignore-5.1.4/test/git-check-ignore.js-155-
node-ignore-5.1.4/test/git-check-ignore.js:156:  test(`test for test:    ${description}`, t => {
node-ignore-5.1.4/test/git-check-ignore.js-157-    const result = getNativeGitIgnoreResults(patterns, paths).sort()
##############################################
node-ignore-5.1.4/test/ignore.js-20-  checkEnv('IGNORE_ONLY_FILTER')
node-ignore-5.1.4/test/ignore.js:21:  && test(`.filter():        ${description}`, t => {
node-ignore-5.1.4/test/ignore.js-22-    const ig = ignore()
##############################################
node-ignore-5.1.4/test/ignore.js-31-  checkEnv('IGNORE_ONLY_CREATE_FILTER')
node-ignore-5.1.4/test/ignore.js:32:  && test(`.createFilter():  ${description}`, t => {
node-ignore-5.1.4/test/ignore.js-33-    const result = paths.filter(
##############################################
node-ignore-5.1.4/test/ignore.js-45-  checkEnv('IGNORE_ONLY_IGNORES')
node-ignore-5.1.4/test/ignore.js:46:  && test(`.ignores(path):   ${description}`, t => {
node-ignore-5.1.4/test/ignore.js-47-    const ig = ignore().addPattern(patterns)
##############################################
node-ignore-5.1.4/test/ignore.js-49-    Object.keys(paths_object).forEach(path => {
node-ignore-5.1.4/test/ignore.js:50:      t.is(ig.ignores(path), !!paths_object[path], `path: "${path}"`)
node-ignore-5.1.4/test/ignore.js-51-    })
##############################################
node-ignore-5.1.4/test/ignore.js-59-  checkEnv('IGNORE_ONLY_WIN32')
node-ignore-5.1.4/test/ignore.js:60:  && test(`win32: .filter(): ${description}`, t => {
node-ignore-5.1.4/test/ignore.js-61-    const win_paths = paths.map(make_win32)
##############################################
node-ignore-5.1.4/test/ts/simple.ts-4-  if (actual !== expect) {
node-ignore-5.1.4/test/ts/simple.ts:5:    throw new Error(`${message}, expect: ${expect}, actual: ${actual}`)
node-ignore-5.1.4/test/ts/simple.ts-6-  }