blob: fc87b89e4590f2459d6662162c17d481f2ca7866 (
plain)
1
2
3
4
5
6
|
import assertString from './util/assertString';
import isHexadecimal from './isHexadecimal';
export default function isMongoId(str) {
assertString(str);
return isHexadecimal(str) && str.length === 24;
}
|