@travetto/base
Advanced tools
Comparing version 0.0.59 to 0.0.60
@@ -19,3 +19,3 @@ { | ||
"scripts": {}, | ||
"version": "0.0.59" | ||
"version": "0.0.60" | ||
} |
@@ -18,3 +18,3 @@ import * as path from 'path'; | ||
returnDir?: boolean; | ||
include?: (stat: Entry) => boolean; | ||
include: (stat: Entry) => boolean; | ||
} | ||
@@ -43,3 +43,3 @@ | ||
} | ||
if ((!stats.isDirectory() || handler.returnDir) && (!handler.include || handler.include(entry))) { | ||
if ((!stats.isDirectory() || handler.returnDir) && handler.include(entry)) { | ||
out.push(entry); | ||
@@ -66,3 +66,3 @@ } | ||
} | ||
if ((!stats.isDirectory() || handler.returnDir) && (!handler.include || handler.include(entry))) { | ||
if ((!stats.isDirectory() || handler.returnDir) && handler.include(entry)) { | ||
out.push(entry); | ||
@@ -69,0 +69,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17307