| 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/isMD5.js |
import assertString from './util/assertString';
var md5 = /^[a-f0-9]{32}$/;
export default function isMD5(str) {
assertString(str);
return md5.test(str);
}