Some checks failed
morphit-release / Build + publish release tarball (push) Has been cancelled
10 lines
476 B
JavaScript
10 lines
476 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isValidCommunityAccountRegexp = exports.communityAccountRegexp = void 0;
|
|
/** Community Identifier */
|
|
exports.communityAccountRegexp = /^blurt-[1-3]\d{4,6}$/;
|
|
const isValidCommunityAccountRegexp = (communityAccount) => {
|
|
const re = new RegExp(exports.communityAccountRegexp);
|
|
return re.test(communityAccount);
|
|
};
|
|
exports.isValidCommunityAccountRegexp = isValidCommunityAccountRegexp;
|