blob: e24231a223c7184565c0b3f5d6783e22392e9e0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* Emoji
*/
module.exports = text => {
const match = text.match(/^:[a-zA-Z0-9+-_]+:/);
if (!match) return null;
const emoji = match[0];
return {
type: 'emoji',
content: emoji,
emoji: emoji.substr(1, emoji.length - 2)
};
};
|