ecency-mobile/src/utils/communityValidation.js
2021-01-18 22:30:13 +03:00

10 lines
197 B
JavaScript

import { isNumber } from 'lodash';
export const isCommunity = (text) => {
if (/hive-[1-3]\d{4,6}$/.test(text) && isNumber(Number(text.split('-')[1]))) {
return true;
}
return false;
};