Created
October 15, 2024 17:35
-
-
Save Sarverott/84d6c4c6f26c7931868573d94037605d to your computer and use it in GitHub Desktop.
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
function mergeIgnorotronsFiles(...gitignoresContent) { | |
return [ | |
...new Set( | |
gitignoresContent | |
.join("\n") | |
.split("\n") | |
.filter((x) => x.charAt(0) != "#") | |
.map((x) => x = x.trim()) | |
.filter((x) => x) | |
) | |
].join("\n"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for test example use github's gitignore repo
as arguments of
mergeIgnorotronsFiles
function use .gitignore content textexample code sample with node.js combination of C++.gitignore and C.gitignore
Note, that in linux system files, started with comma (
.
) are in default hidden, so when you look for it usels -al