| Current Path : /proc/thread-self/root/var/www/recommendations/www/node_modules/validator/es/lib/ |
| Current File : //proc/thread-self/root/var/www/recommendations/www/node_modules/validator/es/lib/isMongoId.js |
import assertString from './util/assertString';
import isHexadecimal from './isHexadecimal';
export default function isMongoId(str) {
assertString(str);
return isHexadecimal(str) && str.length === 24;
}