Permalink
Cannot retrieve contributors at this time
18 lines (18 sloc)
641 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@actions/glob/lib/internal-match-kind.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
"use strict"; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
exports.MatchKind = void 0; | |
/** | |
* Indicates whether a pattern matches a path | |
*/ | |
var MatchKind; | |
(function (MatchKind) { | |
/** Not matched */ | |
MatchKind[MatchKind["None"] = 0] = "None"; | |
/** Matched if the path is a directory */ | |
MatchKind[MatchKind["Directory"] = 1] = "Directory"; | |
/** Matched if the path is a regular file */ | |
MatchKind[MatchKind["File"] = 2] = "File"; | |
/** Matched */ | |
MatchKind[MatchKind["All"] = 3] = "All"; | |
})(MatchKind = exports.MatchKind || (exports.MatchKind = {})); | |
//# sourceMappingURL=internal-match-kind.js.map |