Check if glob pattern is literal, i.e. does not have special glob match characters.
assert(isLiteral("Makefile")); assert(!isLiteral("")); assert(!isLiteral("pak[0-9].pak"));
See Implementation
Check if glob pattern is literal, i.e. does not have special glob match characters.