Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 14, 2023
1 parent 66331fc commit c5c4494
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/Index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ export default (_Option: Option = {}): AstroIntegration => {
const Paths = new Set<Path>();

if (typeof __Option["Path"] !== "undefined") {
if (
__Option["Path"] instanceof Array ||
if (Array.isArray(__Option["Path"]) ||
__Option["Path"] instanceof Set
) {
for (const Path of __Option["Path"]) {
Expand Down

0 comments on commit c5c4494

Please sign in to comment.