Added common smileys + some emojis
This commit is contained in:
parent
54a95d481c
commit
d61476d302
|
@ -58,6 +58,24 @@ export default {
|
|||
|
||||
/* (3) Manage emojis
|
||||
---------------------------------------------------------*/
|
||||
/* (1) Smileys */
|
||||
msg = msg.replace(/:D/g, '😃');
|
||||
msg = msg.replace(/:\)/g, '🙂');
|
||||
msg = msg.replace(/:B/g, '😎');
|
||||
msg = msg.replace(/:3/g, '😗');
|
||||
msg = msg.replace(/;\)/g, '😉');
|
||||
msg = msg.replace(/:P/g, '😋');
|
||||
msg = msg.replace(/;P/g, '😜');
|
||||
msg = msg.replace(/xD/g, '😆');
|
||||
msg = msg.replace(/:O/ig, '😲');
|
||||
msg = msg.replace(/:S/g, '😖');
|
||||
msg = msg.replace(/\^\^/g, '😊');
|
||||
|
||||
/* (2) Emojis */
|
||||
msg = msg.replace(/:poop:/g, '💩');
|
||||
msg = msg.replace(/:fuck:/g, '🖕');
|
||||
msg = msg.replace(/\+1/g, '👍');
|
||||
msg = msg.replace(/-1/g, '👎');
|
||||
|
||||
return msg;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue