morphit/node_modules/@beblurt/dblurt/lib/chain/nexus.js
Morphit Team 24240cef4c
Some checks failed
morphit-release / Build + publish release tarball (push) Has been cancelled
Reputation flags clearable across all four signals; names and avatars stop vanishing
2026-07-23 14:28:04 -07:00

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;