/**
* Checks if a string is all wildcards(*)
*
* @param value The value to check if it is a wildcard
* @returns True if the value is all wildcards, false otherwise
*/exportfunctionisAllWildcards(value) {
return value.match(/^\*+$/) !== null;
}
//# sourceMappingURL=utils.js.map