mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-25 06:13:12 +03:00
8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
|
export const isCommunity = (text) => {
|
||
|
if (/^hive-\d+/.test(text) && text.length === 11) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
};
|