-
-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(arco): add ArcoResolver exclude to filter components with the sa… (
#628) Co-authored-by: Anthony Fu <[email protected]>
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export function isExclude(name: string, exclude?: string | RegExp | (string | RegExp)[] | undefined): boolean { | ||
if (!exclude) | ||
return false | ||
|
||
if (typeof exclude === 'string') | ||
return name === exclude | ||
|
||
if (exclude instanceof RegExp) | ||
return !!name.match(exclude) | ||
|
||
if (Array.isArray(exclude)) { | ||
for (const item of exclude) { | ||
if (name === item || name.match(item)) | ||
return true | ||
} | ||
} | ||
return false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters