I was surprised that the following example doesn't return false. Actually, I'd expected the parser to throw an error first.
const invalidBase62 = '@@@@@@@@@@@@@@@@@@@@@@@@@@@';
const parsedKsuid = KSUID.parse(invalidBase62);
KSUID.isValid(parseKSUID.raw); // true
Is this my misconception about the library, or is it a bug?